0

Package: Selenium.InternetExplorer.WebDriver Version: 3.12.0, 3.150.0

InternetExplorerOptions options = new InternetExplorerOptions();
driver = new InternetExplorerDriver(options);
driver.Navigate().GoToUrl("http://www.google.com");
string hello = ""; <-- never come here and not exceptions 
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
dlopezgonzalez
  • 4,217
  • 5
  • 31
  • 42

1 Answers1

0

While using Selenium.InternetExplorer.WebDriver Version: 3.150.0 you might face some issues because as per the changelog:

...Users using this version of the IE driver with language bindings prior to 4.0 may encounter issues if the bindings do not properly format the new session request; nevertheless, this change will not be reverted, as future versions of the language bindings should properly format the new session command.

A better option would be to upgrade to Selenium v4.0.0.0

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352