Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is the scenario.

I am using Page object design pattern(Web driver + TestNG). A pop up appears randomly on some of the pages during run time. Please note, they appear randomly on any page and I am not even sure about the trigger(Dev & QA team are geographically apart and there are several other complications to know about the trigger due to the Team size and time. ).

Good thing is: Though it is very difficult to reproduce the pop up manually, These pop ups are recognizable by web driver and they are html objects(not frames)

The Problem is: I have added check page event at every new page transition. And I am checking at every page load if this pop has appears. However, Web driver waits for the page default time out to check if pop up has appeared in every SINGLE page. This takes a LONG time during run time. Imagine if the Page time out is 120 seconds. Web driver waits 120 seconds to check if pop up appears or not in every single page.

Not sure how to handle this situation. I need to dismiss the pop up when it appears(randomly) and continue the execution on Page.

Please help. Kindly let me know if you need more details.

Thanks in advance, Mike

share|improve this question
Enable settings in your browser to block popup window. – Roman C Nov 12 '12 at 14:00

1 Answer

Maybe you can simply ignore the popups by using a handle to the main page and switching the focus to it after every page load?

This article on how to handle popups in Selenium might help you further.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.