1

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

revy
  • 3,945
  • 7
  • 40
  • 85

1 Answers1

2

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

Alexey R.
  • 8,057
  • 2
  • 11
  • 27