If my macro hits a 404 during open, it just gets stuck at that line.
Is there any setting to proceed to next line even if open hits 404 ?
I’ve set !errorIgnore true and it works for continuing if failing a click (element missing)
but not in the case above.
On version for Chrome: Kantu Fresh Web Browser Automation 3.02
Hmm, do you have a test case for us? because in my tests, Kantu runs fine after a 404. Here is my test (using a page of this forum that does not exists):
{
"CreationDate": "2018-6-11",
"Commands": [
{
"Command": "open",
"Target": "https://forum.a9t9.com/xxxxxx",
"Value": ""
},
{
"Command": "type",
"Target": "name=q",
"Value": "test"
},
{
"Command": "clickAndWait",
"Target": "//*[@id=\"google-search\"]/button",
"Value": ""
}
]
}