Skip to main content

[WebUI] Modify Object Property

Description

Modify existing property or add a new property to test object. Use when test object has attributes changing in runtime.

This keyword does not modify the object saved in Object Repository. Instead, it creates another test object, modifies and returns this test object. Hence, users must use a variable to store the returned object.

Keyword name: modifyObjectProperty

Parameters

ParameterParameter TypeRequiredDescription
testObjectTest ObjectYesRepresents a web element.
propertyNameStringYesName of the property (ex. Xpath, id, name) If the property already exists in the object, the keyword will modify its related artifacts; if not, the keyword will add a new property.
matchConditionStringYesCondition to match property name with property value, for example, equals, not equals. In case the property already exists, input null to this argument to keep the old value of match condition.
modifyValueStringYesValue of the property. In case the property already exists, input null to this argument to keep the old property value.
isActiveBooleanYesTrue if the property is checked (used to find the test object); otherwise, false. In case the property already exists, input null to this argument to keep the old value.
flowControlFailureHandlingOptionalSpecify failure handling schema to determine whether the execution should be allowed to continue or stop.

Returns

Parameter TypeDescription
TestObjectThe newly created TestObject.

Example

You want to modify property xpath of the object btn_Login and save the modified object as new_btn:

import static com.kms.katalon.core.checkpoint.CheckpointFactory.findCheckpoint
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 com.kms.katalon.core.checkpoint.Checkpoint as Checkpoint
import com.kms.katalon.core.checkpoint.CheckpointFactory as CheckpointFactory
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as MobileBuiltInKeywords
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile
import com.kms.katalon.core.model.FailureHandling as FailureHandling
import com.kms.katalon.core.testcase.TestCase as TestCase
import com.kms.katalon.core.testcase.TestCaseFactory as TestCaseFactory
import com.kms.katalon.core.testdata.TestData as TestData
import com.kms.katalon.core.testdata.TestDataFactory as TestDataFactory
import com.kms.katalon.core.testobject.ObjectRepository as ObjectRepository
import com.kms.katalon.core.testobject.TestObject as TestObject
import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WSBuiltInKeywords
import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WS
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUiBuiltInKeywords
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI
import internal.GlobalVariable as GlobalVariable

'Open browser and navigate to AUT'
WebUI.openBrowser(GlobalVariable.G_SiteURL)

'Input username'
WebUI.setText(findTestObject('Page_Login/txt_UserName'), Username)

'Input password'
WebUI.setText(findTestObject('Page_Login/txt_Password'), Password)

'Modify xpath of \'Login\' button'
new_btn = WebUI.modifyObjectProperty(findTestObject('Page_Login/btn_Login'), 'xpath', 'equals', '//*[@type=\"button\"]', false)

'Click on new_btn'
WebUI.click(new_btn)

'Close browser'
WebUI.closeBrowser()
Was this page helpful?