I am using selenium-webdriver to automate browser. I need to open a url in a new tab in selenium. I am currently able to open a new tab using
driver.find_element(:css,'body').send_keys [:control,'t']
But when i try to open an url in the opened tab using driver.get
it does not work in ie9. It opens in the previous tab itself. This works fine in chrome and firefox, but not in ie9. Any suggestions please?