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

I'm using Selenium and Firefox.

I have a link on a page (say linkA) that opens a new page in a new tab. The new tab is displayed when linkA is clicked. I then want to interact with the new page.

Here is my selenium script:

  • click linkA
  • pause 5000
  • selectWindow Title
  • click linkB (note: linkB is on the new page)

Selenium cannot identify the new tab. It reports:

[warn] Link has target '_blank', which is not supported in Selenium! Randomizing target to be: selenium_blank24003

Is there any way to tell Selenium to interact with the displayed tab?

share|improve this question
Did you get this resolved? – s_hewitt May 4 '09 at 22:53

4 Answers

Did you try adding a windowFocus between selectWindow and click linkB?

Edit: selectWindow takes a Javascript windowID. Does your linkA specify a windowID for Selenium to access?

Here is the full first test page (t1.html), in the window.open call the 2nd parameter is 'WindowTest', this is the javascript windowID that selenium looks for.

<a href="javascript:void(0);" name="t1" 
   onclick="window.open('t2.html', 'WindowTest', 'width=450,height=600');">
 test
</a>

Here is the second test page (t2.html):

<a href="t1.html" name="t2">2test2</a>

Running your script ends up with the popup window on t1.html My script

click              link=test
pause              5000
selectWindow       WindowTest
windowFocus
click              link=2test2
share|improve this answer
He is not talking about a popup via window.open. – Joey V. Dec 19 '11 at 15:30

It worked for me.

[info] Executing: |storeEval | this.browserbot.findElement('link=Pastanet').href | Link_PastaNet |
[info] Executing: |openWindow | ${Link_PastaNet} | MyWindows | 
share|improve this answer

Here are the steps I took for Selenium IDE:

  1. find the link in question
  2. remove the attribute “target” from the link
  3. copy the href destination in a variable (myUrl)
  4. modify the link href->javascript:window.open(myUrl,’myWindow’)
  5. click on link
  6. select window ‘myWindow’

getEval | this.page().findElement(‘link=click here’).removeAttribute(‘target’)||

storeEval | this.page().findElement(‘link=click here’).href | myUrl

getEval | this.page().findElement(‘link=click here’).href=”javascript:window.open(‘${myUrl}’,'myWindow’)” ||

click | link=click here ||

pause | 1000 ||

selectWindow | name=myWindow ||

share|improve this answer

lericain59's sent me in the right direction, though I had to make a few changes for it work with my version of selenium's IDE (I'm running 1.0.6). Also, for my purposes, I didn't need to verify so much that it opened in a separate window, only that it was opening the correct window.

Here's the script that worked for me.

  • storeEval | this.browserbot.findElement('link=click here').href | myUrl |
  • open | ${myUrl} ||

this.page() didn't work. It seems to have been replaced with this.browserbot. Also, I just opened the page directly - it avoids a manual pause and has less steps.

share|improve this answer

protected by Community Jun 12 '11 at 18:35

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.