I have a script that scrapes quite a bit of web elements from a web page, all of which are nested in individual exception handling actions because the page is dynamic and the web elements don’t always exist. When they are not present, the script takes an amount of time to move on to the next action. This is usually fine but in this case, because of the large amount of web elements that may not be showing with the current input, the script ends up taking a long time to complete.
Is there any way to adjust the time the exception handling takes to wait for an action to fail before moving to the next action?
Thanks!