Hi,
When I click a link, it opens another tab, how can I switch selenium to another tab with simplelenium?
Things like this:
ArrayList tabs2 = new ArrayList (driver.getWindowHandles());
driver.switchTo().window(tabs2.get(1));
driver.close();
driver.switchTo().window(tabs2.get(0));