When window.open()
fires in Selenium IE Web Driver it opens a new window instead of opening in a new tab.
Normally in IE browser it opens a new tab but not in Selenium Web Driver.
Need the fix.
When window.open()
fires in Selenium IE Web Driver it opens a new window instead of opening in a new tab.
Normally in IE browser it opens a new tab but not in Selenium Web Driver.
Need the fix.
Have a look at this post How to open a new tab using Selenium WebDriver with Java?
you could implement this
driver.ExecuteScript("window.open('your url','_blank');");