I need to test IE and Firefox, I'm using Selenium RC and Java. After clicking a certain type of link Selenium can not see the new popup window in IE

All I need to do is check the PDF has loaded, I know I can't interact with the PDF directly in the browser, but checking the window exists, and possibly verfiying the URL would suffice.

The link is as follows:-

href="/myPdf.pdf" target="_blank" myLink

I have tried several suggestions I have seen on here and other sites, for example:-

Removing the target, and changing the .href to use javascript:window.open, and then clicking the link

selenium.getEval("{this.page().findElement('link=myLink').removeAttribute('target')};");
String newURL = selenium.getEval("{this.page().findElement('link=myLink').href}");
selenium.getEval("{this.page().findElement('link=myLink').href=\"javascript:window.open('" + newLinkURL + "', 'popup')\"}");
selenium.click("link=myLink");

This opens the pdf in a new browser, but also throws the permission denied js error dialogue.

I have also tried changing the target of the link to be "popup1", then opening a new window called "popup1", and clicking the link. This time the new window opens, pdf displayed, no js error dialogue, but Selenium can still not see the window called "popup1"

    selenium.getEval("{this.page().findElement('link=myLink).target='popup1'};");
    selenium.getEval("{this.browserbot.getCurrentWindow().open('', 'popup1')}");
selenium.click("link=myLink");

If anyone has any other suggestions they'd be greatly appreciated.

Thanks.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.