I want to insert ‘Enter’ Keys but failed
This is what I found from guide
==========================================================
https://docs.katalon.com/display/KD/[WebUI]+Send+Keys
'Press Ctrl+A to select all text in txt_Comment'
WebUI.sendKeys(findTestObject(
'txt_Comment'
), Keys.chord(Keys.CONTROL,
'a'
))
==========================================================
Here is my question. What should I do for just hitting 'Enter' keys?
WebUI.sendKeys(
Keys.ENTER
)
Please let me know how to do this