selenium webdriver 2.25
java 1.7
Firefox 15.0.1
I have a page where a popup is created through iFrames.
- I use switchTo().frame("LookupWindow") to switch to the popup.
- I then successfully enter some text and look up a value
- Once the value is found, it is displayed as a hyperlink, and I click on on it (still on the popup)
- The popup now closes (because I clicked on the value in the popup)
This all expected behavior and works fine. However, the code hangs after the statement that clicks the value (which in turn closes the window). It waits forever, does not report an error at all.
Ideas? Workarounds?
Thanks.