How to erase filled field in web form?

Hello, I need to erase value of field when open in on edition. How can I do it?

Hi, we do not have the function as a built-in keyword. Could you add a new custom keyword do the job?
Here is the instruction on how to create a new custom keyword: https://www.katalon.com/resources-center/tutorials/create-custom-keyword/
and the keyword implementation is similiar to:

@Keyword
def clear(TestObject obj) {
	WebUiBuiltInKeywords.findWebElement(obj).clear()
}

Super! Thanks a lot for reply, I was searching for this solution :slight_smile: