revy
revy

Reputation: 4727

Extract SSL certificate details from website using Selenium - Chrome driver

Is it possible, using Selenium and Chrome driver, to access informations about the SSL certificate used on the current website?

For example, given the url https://google.com, I would like to extract the following:

enter image description here

Upvotes: 1

Views: 1133

Answers (1)

Alexey R.
Alexey R.

Reputation: 8686

Selenium does not provide API for extracting certificates. You can extract what you need using standard python libs:

Upvotes: 2

Related Questions