I'm having difficulty selecting a window that pops up using Selenium IDE. I've tried
selectWindow(title)
and
selectPopup(title)
but they don't seem to work. Once the window is selected, the
verifyTitle(title)
works just fine, so I started doing some testing and the tests were able to match to objects on the background window. So it seems that I'm failing to match to the window by title. I've also tried just using selectWindow / selectPopup with no parameters, but there's no change.
It is important to note that the window is launched through the click of a button, which also creates the name of the window based on its id which isn't available to Selenium, hence we need to launch based on title, not name, and I'm unable to use openWindow or similar since the url etc are generated by the underlying system. I just need a consistent way to select the popup.
Does anyone know how I can resolve this?