We are running Selenium regression tests against our existing code base, and certain screens in our web app use pop-ups for intermediate steps.
Currently we use the
I needed to select an iframe within a popup window and fill out a form. I had trouble using the selectWindow cmd where selenium couldn't find my iframe, so I removed the command.
This selenese worked well for me (where the iframe title and id = account_frame) :
click
//a[@class='item_add']
windowFocus
account_frame
waitForPopUp
account_frame
10000