Posted on

Issue

Sometimes, the local chromedriver version is larger than expected by Selenium.

Fix

Download a version that is required from this page, uncompress it.

And add take the path of the binary when you instantiate the driver.

driver = webdriver.Chrome("./chromedriver")

References

  1. https://www.codegrepper.com/code-examples/python/python+selenium+silent
  2. https://smartbear.com/blog/automate-login-with-selenium/
  3. https://chromedriver.storage.googleapis.com/index.html

Leave a Reply

Your email address will not be published. Required fields are marked *