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:

27,621

Downloads of v 81.0.416.41:

312

Last Update:

13 Apr 2020

Package Maintainer(s):

Software Author(s):

  • Chromium and Microsoft teams

Tags:

Selenium Chromium Edge Driver

This is not the latest version of Selenium Chromium Edge Driver available.

  • 1
  • 2
  • 3

81.0.416.41 | Updated: 13 Apr 2020

Downloads:

27,621

Downloads of v 81.0.416.41:

312

Maintainer(s):

Software Author(s):

  • Chromium and Microsoft teams

Selenium Chromium Edge Driver 81.0.416.41

This is not the latest version of Selenium Chromium Edge Driver available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Chromium and Microsoft teams. The inclusion of Chromium and Microsoft teams trademark(s), if any, upon this webpage is solely to identify Chromium and Microsoft teams goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Selenium Chromium Edge Driver, run the following command from the command line or from PowerShell:

>

To upgrade Selenium Chromium Edge Driver, run the following command from the command line or from PowerShell:

>

To uninstall Selenium Chromium Edge Driver, 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 selenium-chromium-edge-driver -y --source="'INTERNAL REPO URL'" --version="'81.0.416.41'" [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-chromium-edge-driver -y --source="'INTERNAL REPO URL'" --version="'81.0.416.41'" 
$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-chromium-edge-driver
  win_chocolatey:
    name: selenium-chromium-edge-driver
    version: '81.0.416.41'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'selenium-chromium-edge-driver' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '81.0.416.41'
end

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


cChocoPackageInstaller selenium-chromium-edge-driver
{
    Name     = "selenium-chromium-edge-driver"
    Version  = "81.0.416.41"
    Source   = "INTERNAL REPO URL"
}

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


package { 'selenium-chromium-edge-driver':
  ensure   => '81.0.416.41',
  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 by moderator mkevenaar on 17 Apr 2020.

Description

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. MSEdgeDriver is a standalone server which implements WebDriver's wire protocol (https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol) for Chromium.

msedgedriver.exe file is located in <Get-ToolsLocation>/selenium directory.

Package Parameters

The following package parameters can be set:

  • /SkipShim - informs that the shim file should not be generated

To pass parameters, use --params "''" (e.g. choco install selenium-chromium-edge-driver [other options] --params="'/SkipShim'").


tools\chocolateyinstall.ps1
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$toolsLocation = Get-ToolsLocation
$seleniumDir = "$toolsLocation\selenium"
$driverPath = "$seleniumDir\msedgedriver.exe"

$parameters = Get-PackageParameters

$packageArgs = @{
  packageName   = 'selenium-chromium-edge-driver'
  url           = 'https://msedgedriver.azureedge.net/81.0.416.41/edgedriver_win64.zip'
  checksum      = 'B81499F5FCCA0536C36F34C8C80F6B78EED85B1D5212D41CBB2CB407D4A499218859513E6E4412559D5EC8067A3448B8FBF362DBFBABB71726C2CCB066C97239'
  checksumType  = 'sha512'
  unzipLocation = $seleniumDir
}
Install-ChocolateyZipPackage @packageArgs

Uninstall-BinFile -Name 'msedgedriver'
If ($parameters['SkipShim'] -ne 'true') {
  Install-BinFile -Name 'msedgedriver' -Path $driverPath
}

$menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutArgs = @{
  shortcutFilePath = "$menuPrograms\Selenium\Selenium Chromium Edge Driver.lnk"
  targetPath       = $driverPath
  iconLocation     = "$toolsDir\icon.ico"
}
Install-ChocolateyShortcut @shortcutArgs
tools\chocolateyuninstall.ps1
$toolsLocation = Get-ToolsLocation
$seleniumDir = "$toolsLocation\selenium"

If (Test-Path -Path $seleniumDir) {
  $driverPath = "$seleniumDir\msedgedriver.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
  }
}

Uninstall-BinFile -Name 'msedgedriver'

$menuPrograms = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutDir = "$menuPrograms\Selenium"

If (Test-Path -Path $shortcutDir) {
  $shortcutFile = "$shortcutDir\Selenium Chromium Edge 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
  }
}
tools\icon.ico
 

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
Selenium Chromium Edge Driver 138.0.3351.55 107 Friday, June 27, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.93 140 Friday, June 20, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.83 137 Saturday, June 14, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.68 149 Saturday, June 7, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.62 60 Wednesday, June 4, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.58 53 Monday, June 2, 2025 Approved
Selenium Chromium Edge Driver 137.0.3296.52 153 Thursday, May 29, 2025 Approved
Selenium Chromium Edge Driver 136.0.3240.92 96 Friday, May 23, 2025 Approved
Selenium Chromium Edge Driver 136.0.3240.76 170 Thursday, May 15, 2025 Approved
Selenium Chromium Edge Driver 136.0.3240.64 285 Friday, May 9, 2025 Approved
Selenium Chromium Edge Driver 135.0.3179.98 235 Friday, April 25, 2025 Approved
Selenium Chromium Edge Driver 135.0.3179.85 117 Friday, April 18, 2025 Approved
Selenium Chromium Edge Driver 135.0.3179.73 130 Saturday, April 12, 2025 Approved
Selenium Chromium Edge Driver 135.0.3179.66 109 Wednesday, April 9, 2025 Approved
Selenium Chromium Edge Driver 135.0.3179.54 347 Friday, April 4, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.93 246 Thursday, March 27, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.85 78 Tuesday, March 25, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.83 81 Saturday, March 22, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.72 140 Saturday, March 15, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.68 68 Friday, March 14, 2025 Approved
Selenium Chromium Edge Driver 134.0.3124.51 198 Friday, March 7, 2025 Approved
Selenium Chromium Edge Driver 133.0.3065.92 94 Friday, February 28, 2025 Approved
Selenium Chromium Edge Driver 133.0.3065.82 86 Saturday, February 22, 2025 Approved
Selenium Chromium Edge Driver 133.0.3065.69 100 Saturday, February 15, 2025 Approved
Selenium Chromium Edge Driver 133.0.3065.59 98 Tuesday, February 11, 2025 Approved
Selenium Chromium Edge Driver 133.0.3065.51 195 Friday, February 7, 2025 Approved
Selenium Chromium Edge Driver 132.0.2957.140 89 Friday, January 31, 2025 Approved
Selenium Chromium Edge Driver 132.0.2957.127 65 Saturday, January 25, 2025 Approved
Selenium Chromium Edge Driver 132.0.2957.115 206 Saturday, January 18, 2025 Approved
Selenium Chromium Edge Driver 131.0.2903.146 115 Saturday, January 11, 2025 Approved
Selenium Chromium Edge Driver 131.0.2903.112 142 Friday, December 20, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.99 88 Friday, December 13, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.86 33 Thursday, December 12, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.70 150 Tuesday, November 26, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.63 63 Friday, November 22, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.51 154 Saturday, November 16, 2024 Approved
Selenium Chromium Edge Driver 131.0.2903.48 437 Friday, November 15, 2024 Approved
Selenium Chromium Edge Driver 130.0.2849.80 100 Friday, November 8, 2024 Approved
Selenium Chromium Edge Driver 130.0.2849.68 105 Friday, November 1, 2024 Approved
Selenium Chromium Edge Driver 130.0.2849.56 105 Friday, October 25, 2024 Approved
Selenium Chromium Edge Driver 130.0.2849.52 132 Wednesday, October 23, 2024 Approved
Selenium Chromium Edge Driver 129.0.2792.89 316 Friday, October 11, 2024 Approved
Selenium Chromium Edge Driver 129.0.2792.79 108 Friday, October 4, 2024 Approved
Selenium Chromium Edge Driver 129.0.2792.65 127 Friday, September 27, 2024 Approved
Selenium Chromium Edge Driver 129.0.2792.52 113 Friday, September 20, 2024 Approved
Selenium Chromium Edge Driver 129.0.2766 189 Friday, August 9, 2024 Approved
Selenium Chromium Edge Driver 129.0.2751 219 Friday, August 2, 2024 Approved
Selenium Chromium Edge Driver 127.0.2651.74 160 Friday, July 26, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.113 99 Friday, July 19, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.102 111 Friday, July 12, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.87 137 Tuesday, July 2, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.81 83 Friday, June 28, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.68 109 Friday, June 21, 2024 Approved
Selenium Chromium Edge Driver 126.0.2592.61 160 Tuesday, June 18, 2024 Approved
Selenium Chromium Edge Driver 125.0.2535.92 138 Friday, June 7, 2024 Approved
Selenium Chromium Edge Driver 125.0.2535.85 81 Tuesday, June 4, 2024 Approved
Selenium Chromium Edge Driver 125.0.2535.79 89 Friday, May 31, 2024 Approved
Selenium Chromium Edge Driver 125.0.2535.67 52 Saturday, May 25, 2024 Approved
Selenium Chromium Edge Driver 124.0.2478.109 156 Friday, May 17, 2024 Approved
Selenium Chromium Edge Driver 124.0.2478.105 93 Wednesday, May 15, 2024 Approved
Selenium Chromium Edge Driver 124.0.2478.97 107 Saturday, May 11, 2024 Approved
Selenium Chromium Edge Driver 124.0.2478.80 118 Friday, May 3, 2024 Approved
Selenium Chromium Edge Driver 124.0.2478.67 121 Friday, April 26, 2024 Approved
Selenium Chromium Edge Driver 123.0.2420.97 172 Saturday, April 13, 2024 Approved
Selenium Chromium Edge Driver 123.0.2420.81 202 Friday, April 5, 2024 Approved
Selenium Chromium Edge Driver 123.0.2420.65 115 Wednesday, March 27, 2024 Approved
Selenium Chromium Edge Driver 122.0.2365.92 221 Friday, March 15, 2024 Approved
Selenium Chromium Edge Driver 122.0.2365.80 157 Friday, March 8, 2024 Approved
Selenium Chromium Edge Driver 122.0.2365.66 117 Saturday, March 2, 2024 Approved
Selenium Chromium Edge Driver 122.0.2365.63 74 Friday, March 1, 2024 Approved
Selenium Chromium Edge Driver 121.0.2277.128 151 Friday, February 16, 2024 Approved
Selenium Chromium Edge Driver 121.0.2277.112 96 Friday, February 9, 2024 Approved
Selenium Chromium Edge Driver 121.0.2277.110 76 Thursday, February 8, 2024 Approved
Selenium Chromium Edge Driver 121.0.2277.106 89 Tuesday, February 6, 2024 Approved
Selenium Chromium Edge Driver 121.0.2277.98 106 Friday, February 2, 2024 Approved
Selenium Chromium Edge Driver 120.0.2210.144 207 Thursday, January 18, 2024 Approved
Selenium Chromium Edge Driver 120.0.2210.133 198 Friday, January 12, 2024 Approved
Selenium Chromium Edge Driver 120.0.2210.121 113 Saturday, January 6, 2024 Approved
Selenium Chromium Edge Driver 120.0.2210.91 158 Thursday, December 21, 2023 Approved
Selenium Chromium Edge Driver 120.0.2210.89 95 Thursday, December 21, 2023 Approved
Selenium Chromium Edge Driver 120.0.2210.77 105 Friday, December 15, 2023 Approved
Selenium Chromium Edge Driver 119.0.2151.97 209 Thursday, November 30, 2023 Approved
Selenium Chromium Edge Driver 119.0.2151.93 104 Tuesday, November 28, 2023 Approved
Selenium Chromium Edge Driver 119.0.2151.72 134 Friday, November 17, 2023 Approved
Selenium Chromium Edge Driver 119.0.2151.58 154 Friday, November 10, 2023 Approved
Selenium Chromium Edge Driver 118.0.2088.76 196 Saturday, October 28, 2023 Approved
Selenium Chromium Edge Driver 118.0.2088.69 135 Wednesday, October 25, 2023 Approved
Selenium Chromium Edge Driver 118.0.2088.61 114 Friday, October 20, 2023 Approved
Selenium Chromium Edge Driver 118.0.2088.57 105 Thursday, October 19, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.60 302 Saturday, October 7, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.55 116 Thursday, October 5, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.47 153 Saturday, September 30, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.43 157 Monday, September 25, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.41 112 Saturday, September 23, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.40 67 Saturday, September 23, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.36 132 Wednesday, September 20, 2023 Approved
Selenium Chromium Edge Driver 117.0.2045.35 58 Tuesday, September 19, 2023 Approved
Selenium Chromium Edge Driver 116.0.1938.81 181 Tuesday, September 12, 2023 Approved
Selenium Chromium Edge Driver 116.0.1938.76 130 Friday, September 8, 2023 Approved
Selenium Chromium Edge Driver 116.0.1938.69 193 Friday, September 1, 2023 Approved
Selenium Chromium Edge Driver 116.0.1938.62 169 Friday, August 25, 2023 Approved
Selenium Chromium Edge Driver 116.0.1938.54 146 Tuesday, August 22, 2023 Approved
Selenium Chromium Edge Driver 115.0.1901.203 270 Friday, August 11, 2023 Approved
Selenium Chromium Edge Driver 115.0.1901.200 158 Tuesday, August 8, 2023 Approved
Selenium Chromium Edge Driver 115.0.1901.188 305 Friday, July 28, 2023 Approved
Selenium Chromium Edge Driver 115.0.1901.183 191 Saturday, July 22, 2023 Approved
Selenium Chromium Edge Driver 114.0.1823.86 185 Tuesday, July 18, 2023 Approved
Selenium Chromium Edge Driver 114.0.1823.82 204 Friday, July 14, 2023 Approved
Selenium Chromium Edge Driver 114.0.1823.79 124 Tuesday, July 11, 2023 Approved
Selenium Chromium Edge Driver 114.0.1823.67 226 Friday, June 30, 2023 Approved
Selenium Chromium Edge Driver 114.0.1823.58 200 Friday, June 23, 2023 Approved
Selenium Chromium Edge Driver 112.0.1722.39 1927 Tuesday, April 11, 2023 Approved
Selenium Chromium Edge Driver 112.0.1722.34 148 Friday, April 7, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.62 400 Friday, March 31, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.54 444 Saturday, March 25, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.51 298 Wednesday, March 22, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.44 227 Friday, March 17, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.43 117 Thursday, March 16, 2023 Approved
Selenium Chromium Edge Driver 111.0.1661.41 135 Tuesday, March 14, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.69 164 Friday, March 10, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.63 276 Friday, March 3, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.57 186 Sunday, February 26, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.56 100 Friday, February 24, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.50 245 Saturday, February 18, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.49 107 Friday, February 17, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.46 136 Wednesday, February 15, 2023 Approved
Selenium Chromium Edge Driver 110.0.1587.41 225 Friday, February 10, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.78 704 Friday, February 3, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.70 175 Friday, January 27, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.69 72 Thursday, January 26, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.61 111 Friday, January 20, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.55 190 Sunday, January 15, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.52 106 Saturday, January 14, 2023 Approved
Selenium Chromium Edge Driver 109.0.1518.49 111 Friday, January 13, 2023 Approved
Selenium Chromium Edge Driver 108.0.1462.76 213 Friday, January 6, 2023 Approved
Selenium Chromium Edge Driver 108.0.1462.54 536 Tuesday, December 20, 2022 Approved
Selenium Chromium Edge Driver 108.0.1462.42 402 Tuesday, December 6, 2022 Approved
Selenium Chromium Edge Driver 107.0.1418.62 122 Tuesday, November 29, 2022 Approved
Selenium Chromium Edge Driver 107.0.1418.56 334 Tuesday, November 22, 2022 Approved
Selenium Chromium Edge Driver 107.0.1418.52 284 Friday, November 18, 2022 Approved
Selenium Chromium Edge Driver 107.0.1418.42 209 Tuesday, November 15, 2022 Approved
Selenium Chromium Edge Driver 81.0.416.77 2173 Tuesday, May 26, 2020 Approved
Selenium Chromium Edge Driver 81.0.416.41 312 Monday, April 13, 2020 Approved
Selenium Chromium Edge Driver 81.0.363.0 447 Monday, December 16, 2019 Approved

Discussion for the Selenium Chromium Edge Driver Package

Ground Rules:

  • This discussion is only about Selenium Chromium Edge Driver and the Selenium Chromium Edge 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 Chromium Edge 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.
comments powered by Disqus