Forum Discussion
Colin_McCrae
11 years agoCommunity Hero
Sorry, but ....
"Using
"Using
On Error Resume Next
you can skip unwanted window pop-up"
... is a terrible suggestion!
All that will do is switch off the error handling so it doesn't crash when the popup being there prevents the test from being able to use a control on the page below it.
The popup window will still be there.
Any subsequent steps that try and use the page will also fail - as the popup will still be in the way.
So no, I absolutely would NOT recommend this approach!