Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,024,618

Downloads of v 122.0.6261.1283:

9,349

Last Update:

13 Mar 2024

Package Maintainer(s):

Software Author(s):

  • The Chromium Authors

Tags:

chromedriver webdriver chrome

Chromedriver

  • 1
  • 2
  • 3

122.0.6261.1283 | Updated: 13 Mar 2024

Downloads:

1,024,618

Downloads of v 122.0.6261.1283:

9,349

Maintainer(s):

Software Author(s):

  • The Chromium Authors

Chromedriver 122.0.6261.1283

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Chromedriver, run the following command from the command line or from PowerShell:

>

To upgrade Chromedriver, run the following command from the command line or from PowerShell:

>

To uninstall Chromedriver, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade chromedriver -y --source="'INTERNAL REPO 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 chromedriver -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install chromedriver
  win_chocolatey:
    name: chromedriver
    version: '122.0.6261.1283'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'chromedriver' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '122.0.6261.1283'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller chromedriver
{
    Name     = "chromedriver"
    Version  = "122.0.6261.1283"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'chromedriver':
  ensure   => '122.0.6261.1283',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 13 Mar 2024.

Description

Developed in collaboration with the Chromium team, ChromeDriver is a standalone server which implements WebDriver's wire protocol.


tools\chocolateyinstall.ps1
$ErrorActionPreference = "Stop";

$packageName = "chromedriver"
$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$checkSum = "B6EE7DCCA685C121A9A72715E9FF81849A3966BFB180331960BA766404600241"
$chromedriverVersion = "122.0.6261.128"
$desiredPlatform = "win32"

# Use the new google API
# URL to fetch JSON content from
$jsonUrl = "https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json"
# Fetch the JSON content from the URL
$jsonContent = Invoke-RestMethod -Uri $jsonUrl
# Find the desired versioninfo
$desiredVersionInfo = $jsonContent.versions | Where-Object { $_.version -eq $chromedriverVersion }

# Find the Chromedriver download URL for the desired platform
$chromedriverUrl = $desiredVersionInfo.downloads.$packageName | 
    Where-Object { $_.platform -eq $desiredPlatform } | 
    Select-Object -ExpandProperty url

Install-ChocolateyZipPackage "packageName" -url "$chromedriverUrl" -unzipLocation "$toolsDir" -checksumType "sha256" -checksum "$checkSum"

Log in or click on link to see number of positives.

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
Chromedriver 122.0.6261.1113 7767 Friday, March 8, 2024 Approved
Chromedriver 122.0.6261.943 16565 Tuesday, February 27, 2024 Approved
Chromedriver 122.0.6261.693 8332 Friday, February 23, 2024 Approved
Chromedriver 122.0.6261.573 4040 Wednesday, February 21, 2024 Approved
Chromedriver 121.0.6167.1843 4048 Thursday, February 15, 2024 Approved
Chromedriver 121.0.6167.853 11099 Tuesday, January 23, 2024 Approved
Chromedriver 120.0.6099.1093 22833 Tuesday, December 19, 2023 Approved
Chromedriver 120.0.6099.713 8730 Thursday, December 7, 2023 Approved
Chromedriver 120.0.6099.623 1047 Wednesday, December 6, 2023 Approved
Chromedriver 119.0.6045.1053 9704 Wednesday, November 22, 2023 Approved
Chromedriver 119.0.6045.1052 11931 Wednesday, November 1, 2023 Approved
Chromedriver 118.0.5993.702 38171 Wednesday, October 11, 2023 Approved
Chromedriver 117.0.5938.1492 5240 Wednesday, October 4, 2023 Approved
Chromedriver 117.0.5938.922 13945 Thursday, September 21, 2023 Approved
Chromedriver 117.0.5938.622 12822 Wednesday, September 13, 2023 Approved
Chromedriver 116.0.5845.962 33581 Thursday, August 17, 2023 Approved
Chromedriver 114.0.5735.902 83463 Wednesday, May 31, 2023 Approved
Chromedriver 113.0.5672.632 32624 Wednesday, May 3, 2023 Approved
Chromedriver 112.0.5615.492 20701 Wednesday, April 5, 2023 Approved
Chromedriver 111.0.5563.642 12934 Wednesday, March 22, 2023 Approved
Chromedriver 110.0.5481.772 36226 Wednesday, February 8, 2023 Approved
Chromedriver 109.0.5414.742 9922 Thursday, February 2, 2023 Approved
Chromedriver 108.0.5359.711 44313 Tuesday, December 6, 2022 Approved
Chromedriver 108.0.5359.710 5836 Wednesday, November 30, 2022 Approved
Chromedriver 107.0.5304.620 36806 Tuesday, October 25, 2022 Approved
Chromedriver 106.0.5249.610 25023 Wednesday, September 28, 2022 Approved
Chromedriver 105.0.5195.520 26246 Tuesday, September 6, 2022 Approved
Chromedriver 104.0.5112.790 66771 Wednesday, August 3, 2022 Approved
Chromedriver 103.0.5060.1340 19052 Wednesday, July 20, 2022 Approved
Chromedriver 103.0.5060.530 32925 Wednesday, June 22, 2022 Approved
Chromedriver 102.0.5005.610 29844 Wednesday, May 25, 2022 Approved
Chromedriver 101.0.4951.410 19019 Wednesday, April 27, 2022 Approved
Chromedriver 100.0.4896.600 16115 Wednesday, March 30, 2022 Approved
Chromedriver 99.0.4844.510 11307 Wednesday, March 2, 2022 Approved
Chromedriver 98.0.4758.1020 10235 Tuesday, February 15, 2022 Approved
Chromedriver 97.0.4692.710 29615 Wednesday, January 5, 2022 Approved
Chromedriver 96.0.4664.450 20780 Tuesday, November 16, 2021 Approved
Chromedriver 95.0.4638.690 2802 Monday, November 8, 2021 Approved
Chromedriver 95.0.4638.540 2109 Thursday, October 28, 2021 Approved
Chromedriver 94.0.4606.610 6610 Monday, September 27, 2021 Approved
Chromedriver 93.0.4577.150 9741 Thursday, July 29, 2021 Approved
Chromedriver 92.0.4515.1070 3583 Friday, July 30, 2021 Approved
Chromedriver 92.0.4515.430 6052 Wednesday, July 28, 2021 Approved
Chromedriver 91.0.4472.1010 12836 Friday, June 11, 2021 Approved
Chromedriver 91.0.4472.190 3242 Wednesday, June 2, 2021 Approved
Chromedriver 90.0.4430.240 12655 Tuesday, April 13, 2021 Approved
Chromedriver 89.0.4389.230 6942 Thursday, March 4, 2021 Approved
Chromedriver 88.0.4324.960 7247 Wednesday, January 20, 2021 Approved
Chromedriver 87.0.4280.880 7908 Wednesday, December 2, 2020 Approved
Chromedriver 87.0.4280.200 3637 Tuesday, November 17, 2020 Approved
Chromedriver 86.0.4240.220 8477 Wednesday, October 7, 2020 Approved
Chromedriver 85.0.4183.870 9170 Friday, August 28, 2020 Approved
Chromedriver 85.0.4183.830 1016 Wednesday, August 26, 2020 Approved
Chromedriver 84.0.4147.300 5230 Thursday, July 16, 2020 Approved
Chromedriver 83.0.4103.390 6362 Wednesday, May 20, 2020 Approved
Chromedriver 81.0.4044.1380 902 Sunday, May 17, 2020 Approved
Chromedriver 81.0.4044.690 3872 Friday, April 10, 2020 Approved
Chromedriver 80.0.3987.1060 4988 Saturday, February 15, 2020 Approved
Chromedriver 80.0.3987.160 1042 Friday, February 7, 2020 Approved
Chromedriver 79.0.3945.360 4286 Wednesday, December 11, 2019 Approved
Chromedriver 78.0.3904.700 7412 Wednesday, October 23, 2019 Approved
Chromedriver 77.0.3865.400 2905 Friday, September 13, 2019 Approved
Chromedriver 76.0.3809.1260 1938 Saturday, August 24, 2019 Approved
Chromedriver 76.0.3809.680 1799 Saturday, August 3, 2019 Approved
Chromedriver 75.0.3770.1400 1967 Saturday, July 13, 2019 Approved
Chromedriver 75.0.3770.900 1409 Sunday, June 16, 2019 Approved
Chromedriver 75.0.3770.80 389 Thursday, June 13, 2019 Approved
Chromedriver 74.0.3729.60 2572 Wednesday, April 24, 2019 Approved
Chromedriver 73.0.3683.680 1978 Wednesday, March 20, 2019 Approved
Chromedriver 2.460 3248 Saturday, February 2, 2019 Approved
Chromedriver 2.450 2142 Tuesday, December 11, 2018 Approved
Chromedriver 2.440 1170 Thursday, November 22, 2018 Approved
Chromedriver 2.430 1587 Wednesday, October 17, 2018 Approved
Chromedriver 2.420 1714 Friday, September 14, 2018 Approved
Chromedriver 2.410 2275 Sunday, July 29, 2018 Approved
Chromedriver 2.400 2577 Sunday, June 10, 2018 Approved
Chromedriver 2.381 1716 Thursday, May 3, 2018 Approved
Chromedriver 2.39 540 Friday, June 1, 2018 Approved
Chromedriver 2.38.1 282 Friday, May 4, 2018 Approved
Chromedriver 2.38 850 Thursday, April 19, 2018 Approved
Chromedriver 2.37.1 1060 Thursday, March 29, 2018 Approved
Chromedriver 2.37 2039 Saturday, March 17, 2018 Approved
Chromedriver 2.36 5171 Wednesday, March 7, 2018 Approved
Chromedriver 2.35 1389 Thursday, January 11, 2018 Approved
Chromedriver 2.34 15359 Tuesday, December 12, 2017 Approved
Chromedriver 2.33 954 Thursday, November 2, 2017 Approved
Chromedriver 2.32 1178 Friday, September 1, 2017 Approved
Chromedriver 2.31 1805 Tuesday, July 25, 2017 Approved
Chromedriver 2.30 868 Friday, June 9, 2017 Approved
Chromedriver 2.29 1051 Wednesday, April 5, 2017 Approved
Chromedriver 2.28 594 Saturday, March 11, 2017 Approved
Chromedriver 2.27.2 671 Thursday, January 5, 2017 Approved
Chromedriver 2.27 471 Monday, December 26, 2016 Approved
Chromedriver 2.26 509 Thursday, December 15, 2016 Approved
Chromedriver 2.25 551 Sunday, October 30, 2016 Approved
Chromedriver 2.24 629 Monday, September 12, 2016 Approved
Chromedriver 2.23 508 Tuesday, August 9, 2016 Approved
Chromedriver 2.22 484 Wednesday, June 8, 2016 Approved
Chromedriver 2.21 555 Tuesday, February 9, 2016 Approved
Chromedriver.exe - latest version 1.0.0 982 Saturday, January 2, 2016 Approved

This package has no dependencies.

Discussion for the Chromedriver Package

Ground Rules:

  • This discussion is only about Chromedriver and the Chromedriver 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 Chromedriver, 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.
comments powered by Disqus