HOWTO: Selenium IDE Post to New Window(Tab)
Selenium IDE is a very good tool for automated testing. But when dealing with multiple windows, you may encounter some problems. Especially when posting a form to a named target that results in another window. Just like the following one:
1 2 3 |
<form action="..." target="postto"> ... </form> |
Selenium will not be able to find the new… Read more »