Prabhath Perera
Prabhath Perera

Reputation: 45

Internet Explorer settings in Selenium webdriver

How to untick 'check for server certificate ' checkbox in internet explorer settings tab before the selenium execution code. Thank you.

Upvotes: 1

Views: 1569

Answers (2)

kurakura88
kurakura88

Reputation: 2305

Use UIAutomation instead. Selenium is only limited to the Web Automation.

c# ui automation

Upvotes: 0

Andrew Regan
Andrew Regan

Reputation: 5113

There are no built-in options for the InternetExplorerDriver to enable this, but here are two solutions that might help:

  1. Custom registry entries
  2. "Just click the override link"

See also: How can we get Watir-Webdriver to work with the IE invalid cert screen?

Upvotes: 1

Related Questions