Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
198,554
Downloads of v 0.19.0:
1,363
Last Update:
17 Oct 2017
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
selenium gecko driver webdriver testing web-applications freeware- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Selenium Gecko Driver
This is not the latest version of Selenium Gecko Driver available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
198,554
Downloads of v 0.19.0:
1,363
Maintainer(s):
Software Author(s):
- Mozilla
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Selenium Gecko Driver 0.19.0
This is not the latest version of Selenium Gecko Driver available.
All Checks are Passing
2 Passing Test
To install Selenium Gecko Driver, run the following command from the command line or from PowerShell:
To upgrade Selenium Gecko Driver, run the following command from the command line or from PowerShell:
To uninstall Selenium Gecko Driver, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download selenium-gecko-driver --internalize --version=0.19.0 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade selenium-gecko-driver -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade selenium-gecko-driver -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure selenium-gecko-driver installed
win_chocolatey:
name: selenium-gecko-driver
state: present
version: 0.19.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'selenium-gecko-driver' do
action :install
version '0.19.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: selenium-gecko-driver,
Version: 0.19.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller selenium-gecko-driver
{
Name = 'selenium-gecko-driver'
Ensure = 'Present'
Version = '0.19.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'selenium-gecko-driver':
provider => 'chocolatey',
ensure => '0.19.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install selenium-gecko-driver version="0.19.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 17 Oct 2017.
Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers.
This program provides the HTTP API described by the WebDriver protocol (http://w3c.github.io/webdriver/webdriver-spec.html#protocol) to communicate with Gecko browsers, such as Firefox.
It translates calls into the Marionette (https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette) automation protocol by acting as a proxy between the local- and remote ends.
You can consult the change log (https://github.com/mozilla/geckodriver/blob/master/CHANGES.md) for a record of all notable changes to the program.
geckodriver.exe file is located in <Get-ToolsLocation>/selenium directory.
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$tmpDir = "$toolsDir\temp"
$packageArgs = @{
packageName = 'selenium-gecko-driver'
url = 'https://github.com/mozilla/geckodriver/releases/download/v0.19.0/geckodriver-v0.19.0-win32.zip'
checksum = '46079cb33d809d6c80552567e4741023d137958818c6d307561cd1079fd415f59d89a56e6e698b7363b6f97fd5b9c61db4d28712012d93e9dadf278a2b98d024'
checksumType = 'sha512'
url64bit = 'https://github.com/mozilla/geckodriver/releases/download/v0.19.0/geckodriver-v0.19.0-win64.zip'
checksum64 = '9a93d5626d9778fea0a0031fd11d15d52136ba27be2b8463bd6dcdd5a9fb39851040005a3cd18179b90953d0886c4aa21db8c9fb0e16d4b5f90f277d073d38c9'
checksumType64 = 'sha512'
unzipLocation = $tmpDir
}
Install-ChocolateyZipPackage @packageArgs
$toolsLocation = Get-ToolsLocation
$seleniumDir = "$toolsLocation\selenium"
$driverPath = "$seleniumDir\geckodriver.exe"
If (!(Test-Path $seleniumDir)) {
New-Item $seleniumDir -ItemType directory
}
Move-Item $tmpDir\geckodriver.exe $driverPath -Force
Write-Host -ForegroundColor Green Moved driver to $seleniumDir
Remove-Item $tmpDir -Recurse -Force
$menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutArgs = @{
shortcutFilePath = "$menuPrograms\Selenium\Selenium Gecko Driver.lnk"
targetPath = $driverPath
iconLocation = "$toolsDir\icon.ico"
}
Install-ChocolateyShortcut @shortcutArgs
$toolsLocation = Get-ToolsLocation
$seleniumDir = "$toolsLocation\selenium"
if (Test-Path $seleniumDir) {
$driverPath = "$seleniumDir\geckodriver.exe"
if (Test-Path $driverPath) {
Remove-Item $driverPath -Force
}
$directoryInfo = Get-ChildItem $seleniumDir | Measure-Object
If ($directoryInfo.count -eq 0) {
Remove-Item $seleniumDir -Force
}
}
$menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutDir = "$menuPrograms\Selenium"
if (Test-Path $shortcutDir) {
$shortcutFile = "$shortcutDir\Selenium Gecko Driver.lnk"
If (Test-Path $shortcutFile) {
Remove-Item $shortcutFile -Force
}
$directoryInfo = Get-ChildItem $shortcutDir | Measure-Object
If ($directoryInfo.count -eq 0) {
Remove-Item $shortcutDir -Force
}
}
Log in or click on link to see number of positives.
- selenium-gecko-driver.0.19.0.nupkg (96160e5ff68e) - ## / 61
- geckodriver-v0.19.0-win64.zip (701099db0ecc) - ## / 61
- geckodriver-v0.19.0-win32.zip (ca09cc6c13fd) - ## / 61
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Selenium Gecko Driver 0.29.1 | 179 | Tuesday, April 13, 2021 | Approved |
Selenium Gecko Driver 0.29.0 | 9 | Thursday, April 1, 2021 |
Waiting for Maintainer
|
Selenium Gecko Driver 0.26.0 | 154372 | Thursday, October 24, 2019 | Approved |
Selenium Gecko Driver 0.25.0 | 1107 | Sunday, September 29, 2019 | Approved |
Selenium Gecko Driver 0.24.0 | 9248 | Sunday, February 3, 2019 | Approved |
Selenium Gecko Driver 0.23.0 | 5857 | Sunday, October 7, 2018 | Approved |
Selenium Gecko Driver 0.22.0 | 1125 | Monday, September 17, 2018 | Approved |
Selenium Gecko Driver 0.21.0 | 3436 | Tuesday, July 10, 2018 | Approved |
Selenium Gecko Driver 0.20.1.20180630 | 909 | Saturday, June 30, 2018 | Approved |
Selenium Gecko Driver 0.20.1 | 3994 | Sunday, April 8, 2018 | Approved |
Selenium Gecko Driver 0.20.0 | 1648 | Tuesday, March 13, 2018 | Approved |
Selenium Gecko Driver 0.19.1.20171103 | 7155 | Friday, November 3, 2017 | Approved |
Selenium Gecko Driver 0.19.1 | 519 | Wednesday, November 1, 2017 | Approved |
Selenium Gecko Driver 0.19.0 | 1363 | Tuesday, October 17, 2017 | Approved |
Selenium Gecko Driver 0.18.0 | 2495 | Wednesday, July 12, 2017 | Approved |
Selenium Gecko Driver 0.17.0 | 817 | Saturday, June 10, 2017 | Approved |
Selenium Gecko Driver 0.16.1 | 894 | Wednesday, April 26, 2017 | Approved |
Selenium Gecko Driver 0.16.0 | 520 | Saturday, April 22, 2017 | Approved |
Selenium Gecko Driver 0.15.0 | 888 | Wednesday, March 8, 2017 | Approved |
Selenium Gecko Driver 0.14.0 | 509 | Friday, February 3, 2017 | Approved |
Selenium Gecko Driver 0.13.0 | 480 | Sunday, January 8, 2017 | Approved |
Selenium Gecko Driver 0.12.0 | 319 | Wednesday, January 4, 2017 | Approved |
Selenium Gecko Driver 0.11.1 | 711 | Friday, November 4, 2016 | Approved |
Mozilla. All Rights Reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about Selenium Gecko Driver and the Selenium Gecko Driver package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Selenium Gecko Driver, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.