Downloads:
687,043
Downloads of v 0.19.1.20171103:
7,291
Last Update:
03 Nov 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.
- 1
- 2
- 3
0.19.1.20171103 | Updated: 03 Nov 2017
- 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:
687,043
Downloads of v 0.19.1.20171103:
7,291
Maintainer(s):
Software Author(s):
- Mozilla
Selenium Gecko Driver 0.19.1.20171103
This is not the latest version of Selenium Gecko Driver available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Mozilla. The inclusion of Mozilla trademark(s), if any, upon this webpage is solely to identify Mozilla goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
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:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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: (additional options)
choco download selenium-gecko-driver --internalize --version=0.19.1.20171103 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade selenium-gecko-driver -y --source="'INTERNAL REPO URL'" --version="'0.19.1.20171103'" [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="'INTERNAL REPO URL'" --version="'0.19.1.20171103'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install selenium-gecko-driver
win_chocolatey:
name: selenium-gecko-driver
version: '0.19.1.20171103'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'selenium-gecko-driver' do
action :install
source 'INTERNAL REPO URL'
version '0.19.1.20171103'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller selenium-gecko-driver
{
Name = "selenium-gecko-driver"
Version = "0.19.1.20171103"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'selenium-gecko-driver':
ensure => '0.19.1.20171103',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. 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...
This package was approved as a trusted package on 25 Dec 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.
$toolsLocation = Get-ToolsLocation
$seleniumDir = "$toolsLocation\selenium"
If (Test-Path -Path $seleniumDir) {
$driverPath = "$seleniumDir\geckodriver.exe"
If (Test-Path -Path $driverPath) {
Remove-Item -Path $driverPath -Force
}
$directoryInfo = Get-ChildItem -Path $seleniumDir | Measure-Object
If ($directoryInfo.count -eq 0) {
Remove-Item -Path $seleniumDir -Force
}
}
If (Test-Path -Path "$($env:ChocolateyInstall)\bin\geckodriver.exe") {
Uninstall-BinFile -Name 'geckodriver'
}
$menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutDir = "$menuPrograms\Selenium"
If (Test-Path -Path $shortcutDir) {
$shortcutFile = "$shortcutDir\Selenium Gecko Driver.lnk"
If (Test-Path -Path $shortcutFile) {
Remove-Item -Path $shortcutFile -Force
}
$directoryInfo = Get-ChildItem -Path $shortcutDir | Measure-Object
If ($directoryInfo.count -eq 0) {
Remove-Item -Path $shortcutDir -Force
}
}
Log in or click on link to see number of positives.
- geckodriver-v0.19.1-win64.zip (b1c180842aa1) - ## / 63
- geckodriver-v0.19.1-win32.zip (9a0de894a408) - ## / 63
- selenium-gecko-driver.0.19.1.20171103.nupkg (770a0cd7201e) - ## / 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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Selenium Gecko Driver 0.35.0 | 33493 | Tuesday, August 6, 2024 | Approved | |
Selenium Gecko Driver 0.34.0 | 36235 | Wednesday, January 3, 2024 | Approved | |
Selenium Gecko Driver 0.33.0 | 97856 | Monday, April 3, 2023 | Approved | |
Selenium Gecko Driver 0.32.2 | 27916 | Thursday, February 9, 2023 | Approved | |
Selenium Gecko Driver 0.32.1 | 6109 | Thursday, February 2, 2023 | Approved | |
Selenium Gecko Driver 0.32.0 | 21738 | Friday, December 16, 2022 | Approved | |
Selenium Gecko Driver 0.31.0 | 170167 | Friday, May 6, 2022 | Approved | |
Selenium Gecko Driver 0.30.0 | 55745 | Friday, October 15, 2021 | Approved | |
Selenium Gecko Driver 0.29.1 | 35607 | Tuesday, April 13, 2021 | Approved | |
Selenium Gecko Driver 0.26.0 | 154549 | Thursday, October 24, 2019 | Approved | |
Selenium Gecko Driver 0.25.0 | 1274 | Sunday, September 29, 2019 | Approved | |
Selenium Gecko Driver 0.24.0 | 9510 | Sunday, February 3, 2019 | Approved | |
Selenium Gecko Driver 0.23.0 | 6004 | Sunday, October 7, 2018 | Approved | |
Selenium Gecko Driver 0.22.0 | 1274 | Monday, September 17, 2018 | Approved | |
Selenium Gecko Driver 0.21.0 | 4149 | Tuesday, July 10, 2018 | Approved | |
Selenium Gecko Driver 0.20.1.20180630 | 1056 | Saturday, June 30, 2018 | Approved | |
Selenium Gecko Driver 0.20.1 | 4140 | Sunday, April 8, 2018 | Approved | |
Selenium Gecko Driver 0.20.0 | 1844 | Tuesday, March 13, 2018 | Approved | |
Selenium Gecko Driver 0.19.1.20171103 | 7291 | Friday, November 3, 2017 | Approved | |
Selenium Gecko Driver 0.19.1 | 662 | Wednesday, November 1, 2017 | Approved | |
Selenium Gecko Driver 0.19.0 | 1497 | Tuesday, October 17, 2017 | Approved | |
Selenium Gecko Driver 0.18.0 | 2613 | Wednesday, July 12, 2017 | Approved | |
Selenium Gecko Driver 0.17.0 | 969 | Saturday, June 10, 2017 | Approved | |
Selenium Gecko Driver 0.16.1 | 1049 | Wednesday, April 26, 2017 | Approved | |
Selenium Gecko Driver 0.16.0 | 648 | Saturday, April 22, 2017 | Approved | |
Selenium Gecko Driver 0.15.0 | 1047 | Wednesday, March 8, 2017 | Approved | |
Selenium Gecko Driver 0.14.0 | 640 | Friday, February 3, 2017 | Approved | |
Selenium Gecko Driver 0.13.0 | 642 | Sunday, January 8, 2017 | Approved | |
Selenium Gecko Driver 0.12.0 | 441 | Wednesday, January 4, 2017 | Approved | |
Selenium Gecko Driver 0.11.1 | 852 | Friday, November 4, 2016 | Approved |
Mozilla. All Rights Reserved.
https://github.com/mozilla/geckodriver/releases/tag/v0.19.1
Package changes:
- add shim support (https://github.com/agabrys/chocolatey-packages/issues/17)
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.