Reputation: 4727
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:
Upvotes: 1
Views: 1133
Reputation: 8686
Selenium does not provide API for extracting certificates. You can extract what you need using standard python libs:
Upvotes: 2