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
  • 2,955
  • 4
  • 32
  • 56

1 Answers1

2

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

Alexey R.
  • 6,081
  • 1
  • 8
  • 25