I'm using Watir-webdriver and I was wondering if there was a good way to check if a new window opens. I've googled around a bit and couldn't find anything though it feels like there should be an easy answer.

I have a printer friendly link and I want to test that the link opens in a new window or tab and I would like to test this with ie, firefox, chrome and safari if possible.

Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You can check the number of windows:

browser.windows.size

or check if a specific window exists:

browser.window(:title => "foo").exists?

More examples in the specs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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