1

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.

Slava Vedenin
  • 58,326
  • 13
  • 40
  • 59

1 Answers1

1

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');");
Community
  • 1
  • 1
Jay Byford-Rew
  • 5,736
  • 1
  • 35
  • 36