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
  • 54,798
  • 13
  • 37
  • 57

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
kernowcode
  • 5,254
  • 1
  • 32
  • 35