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?