Next button

hi
I am trying to automate my web application using this katalon recently but I am facing problem with the next button as I am not able to move to the next screen,
Could you please suggest me on this issue.
thanks in adv,
kumar

image.png

What happens when you run you script?
could you show me the error?

What is the issue your facing? it’s not clear…

Is there any validation error u r getting??

Luis alberto guzman said:

What happens when you run you script?
could you show me the error?

hi
please find the error code

image.png

Try this click via JS code, it solved a lot of my clicking issues.

static def clickUsingJS(TestObject to)
{

WebDriver driver = DriverFactory.getWebDriver()

WebElement element = WebUiCommonHelper.findWebElement(to, 30)

JavascriptExecutor executor = ((driver) as JavascriptExecutor)

executor.executeScript(‘arguments[0].click()’, element)

}

Thanks udi, for your update!
As I am new to this automation tool I have done a small change to get that next button selected and now it is working and will try with the js code u have mentioned and let u know .
Thanks for your time