Skip to main content

[Mobile] Verify Element Has Attribute

Description

Verify if the element has an attribute with a specific name.

Parameters

ParameterParameter TypeMandatoryDescription
toTestObjectRequiredRepresent a mobile element
attributeNameStringRequiredThe name of the attribute to verify
timeoutintRequiredSystem will wait at most timeout (seconds) to return a result
flowControlFailureHandlingOptionalSpecify failure handling schema to determine whether the execution should be allowed to continue or stop.

Returns

true if the element has the attribute with a specific name; otherwise, false

Example

You want to verify 'App' control has 'class' attribute in 10 seconds timeout.

import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import static com.kms.katalon.core.testdata.TestDataFactory.findTestData
import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject
import internal.GlobalVariable as GlobalVariable
import com.kms.katalon.core.configuration.RunConfiguration as RunConfiguration
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile
import com.kms.katalon.core.util.internal.PathUtil as PathUtil

'Start application on current selected android\'s device'
Mobile.startApplication(GlobalVariable.G_AndroidApp, false)

'Verify App control has class attribute in 10 seconds timeout'
Mobile.verifyElementHasAttribute(findTestObject('Application/android.widget.TextView - App'), 'class', 10)

'Close application on current selected android\'s device'
Mobile.closeApplication()