Clear input default text field in Web with Katalon 8.0.0

This solution works very good for me, and i share it guys, if you face to that issue.

WebUI.sendKeys(findTestObject(‘Your Object’), Keys.chord(Keys.CONTROL, ‘a’))
WebUI.sendKeys(findTestObject(‘Your Object’), Keys.chord(Keys.BACK_SPACE))

see you soon :slight_smile:

1 Like