Skip to main content

[Mobile] Verify Element Attribute Value

Description

Verify if the element has an attribute with the specified name and value

Parameters

ParameterParameter TypeMandatoryDescription
toTestObjectRequiredRepresent a mobile element.
attributeNameStringRequiredThe value of the attribute to verify.
attributeValueStringRequiredThe value 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 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()