0

I'm trying to develop my own web scraper via Python on PyCharm but I've found I hit an issue with finding the file name of the web driver extension for Firefox. I went online to go get the version of the zip file but all I got was:

"Sorry, the page /en-US/docs/Web/WebDriver/Clients could not be found." 

on https://developer.mozilla.org/en-US/docs/Web/WebDriver/Clients which was the link used on https://developer.mozilla.org/en-US/docs/Web/WebDriver/Clients under usage: "depends on which WebDriver client you’re using" link.

I'm trying to get the zip file of version 84.0.1(64-bit) of Firefox Browser.

Could anyone help me find this zip file?

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352

2 Answers2

0

https://github.com/mozilla/geckodriver/releases

you can download webdriver in the above link

the compatability chart is

https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html

enter image description here

PDHide
  • 18,113
  • 2
  • 31
  • 46
0

The list of all the releases of GeckoDriver can be found at mozilla / geckodriver

However it is recomended to crosscheck the compattibility of the version of GeckoDriver you are downloading as per the matrix below:

GeckoDriver_matrix


This usecase

For version 84.0.1 you can use either of the following version of GeckoDriver:

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352