I am working with one project, and I want to set text in particular textbox, which have javascript validation, check below scenario
The scenario in my site:
I have below textbox and also javascript enforce the range validation “1 to 1000” and allows only numeric value on it.
Problem in Katalon:
Now, whenever I use a setText keyword for this input then it will give red validation message many times. not sure setText call onchange or blur.
Here is my code.
WebUI.setText(findTestObject('IS/Product Detail/Quantity Block/Quantity Textbox'), '')
or
WebUI.setText(findTestObject('IS/Product Detail/Quantity Block/Quantity Textbox'), '5')
