I’m a beginner.
I want Katalon to fill in the blanks(order form) automatically according to the info in the Google Cloud.
Is Katalon capable of doing that ?
I assume the “blanks” are input fields. Yes KS does. Use:
WebUI.setText(findTestObject(‘myelement’), “your text”)
and if you want to verify the “blank” was filled, then follow up with:
WebUI.verifyMatch(WebUI.getAttribute(findTestObject(‘myelement’), ‘value’), “your text”, false)