I've searched previous posts and have not been able to find a solution, so I would try a new post.
I have a simple login page in which upon pressing the button it sends you to a new window. I am trying to select this new window and then assert its title, but Selenium IDE cannot find the Window with the title.
Here is the HTML code for the title of this new window...
<head><title>
Pharma Unified Access: Main Menu
</title>
My Selenium code is simple.
<tr>
<td>selectWindow</td>
<td>Pharma Unified Access: Main Menu</td>
<td></td>
</tr>
<tr>
<td>assertTitle</td>
<td>Pharma Unified Access: Main Menu</td>
<td></td>
</tr>
I receive the following message...
[error] Window does not exist. If this looks like a Selenium bug, make sure to read http://seleniumhq.org/docs/02_selenium_ide.html#alerts-popups-and-multiple-windows for potential workarounds.
I used storeallwindownames/ids/title and Selenium does not even recognize the existence of the new window because it only gives me the name/title/id of the original window? How do I make Selenium IDE recognize the existence of this new window?
Any help would be much appreciated.