[Mobile] Verify Element Attribute Value
Description
Verify if the element has an attribute with the specified name and value.
Keyword name: Mobile.verifyElementAttributeValue
Parameters
Parameter | Parameter Type | Required | Description |
---|---|---|---|
to | TestObject | Yes | Represent a mobile element. |
attributeName | String | Yes | The value of the attribute to verify. |
attributeValue | String | Yes | The value of the attribute to verify. |
timeout | int | Yes | System will wait at most timeout (seconds) to return a result. |
flowControl | FailureHandling | Optional | Specify failure handling schema to determine whether the execution should be allowed to continue or stop. |
Returns
true if the element has the attribute with the specified name and value; otherwise, false
Example
You want to verify if 'App' control has an attribute with name = 'class' and value is 'android.widget.TextView'
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 attribute class with value android.widget.TextView'
Mobile.verifyElementAttributeValue(findTestObject('Application/android.widget.TextView - App'),'class','android.widget.TextView', 10)
'Close application on current selected android\'s device'
Mobile.closeApplication()