Strict Mode
By default, our JavaScript scenarios are executed in "strict mode", which means that if an error occurs during the execution of the scenario, the whole scenario will be aborted and an error will be returned.
You can disable this behavior by setting the strict key to false in your scenario.
JSON
1{2"strict": false,3"instructions": [4{"wait_for_and_click": "#slow_button"},5{"scroll_x": 1000},6{"wait": 1000},7{"scroll_x": 1000},8{"wait": 1000}9]10}