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

HI,

I am using Selenium IDE for recording test cases. In a particular test case, I need to work on two windows simultaneously but the selenium IDE does not record when I open a new tab and work on it. Can anyone give me suggestions on this?

awaiting replies !

share|improve this question

1 Answer

You can try that programmatically as suggested here How to close a tab and open a new tab using Selenium RC

You can open the other window (considered popup by selenium i guess) like so

selenium.openWindow("http://example.com/","dev");
selenium.selectWindow("dev");
selenium.open("/");

and then you switch b/w the windows . to go back to original one you will have to do

selenium.selectWindow(null);
share|improve this answer

protected by Community Jun 18 '12 at 18:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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