Downloads:
27,698
Downloads of v 134.0.3124.66:
24
Last Update:
12 Mar 2025
Package Maintainer(s):
Software Author(s):
- Chromium and Microsoft teams
Tags:
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Selenium Chromium Edge Driver
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
27,698
Downloads of v 134.0.3124.66:
24
Maintainer(s):
Software Author(s):
- Chromium and Microsoft teams
Selenium Chromium Edge Driver
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
This package was rejected on 16 Apr 2025. The reviewer chocolatey-ops has listed the following reason(s):
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'"
).
Notes
- If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@61b9a911f150dda68e67c519f839f149231650b2/icons/selenium-chromium-edge-driver.png" width="48" height="48"/> [Selenium Chromium Edge Driver](https://chocolatey.org/packages/selenium-chromium-edge-driver)
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'"`).
## Notes
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
$ErrorActionPreference = 'Stop'
Uninstall-BinFile -Name 'msedgedriver'
$zipPackages = @(
'edgedriver_win32.zip' # 32bit
'edgedriver_win64.zip' # 64bit
)
$zipPackages | ForEach-Object {
Uninstall-ChocolateyZipPackage -PackageName $env:ChocolateyPackageName -ZipFileName $_
}
$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
}
}
Import-Module Chocolatey-AU
$releases = "https://msedgewebdriverstorage.blob.core.windows.net/edgewebdriver/LATEST_STABLE"
function global:au_BeforeUpdate {
$Latest.Checksum32 = Get-RemoteChecksum $Latest.URL32 -Algorithm $Latest.ChecksumType32
$Latest.Checksum64 = Get-RemoteChecksum $Latest.URL64 -Algorithm $Latest.ChecksumType64
$Latest.FileName32 = Split-Path -Leaf $Latest.URL32
$Latest.FileName64 = Split-Path -Leaf $Latest.URL64
}
function global:au_SearchReplace {
@{
".\tools\chocolateyInstall.ps1" = @{
"(?i)^(\s*url\s*=\s*)'.*'" = "`${1}'$($Latest.URL32)'"
"(?i)^(\s*url64\s*=\s*)'.*'" = "`${1}'$($Latest.URL64)'"
"(?i)^(\s*checksum\s*=\s*)'.*'" = "`${1}'$($Latest.Checksum32)'"
"(?i)^(\s*checksum64\s*=\s*)'.*'" = "`${1}'$($Latest.Checksum64)'"
"(?i)^(\s*checksumType\s*=\s*)'.*'" = "`${1}'$($Latest.ChecksumType32)'"
"(?i)^(\s*checksumType64\s*=\s*)'.*'" = "`${1}'$($Latest.ChecksumType64)'"
}
".\tools\chocolateyUninstall.ps1" = @{
"(?i)(^\s*)'.*'(\s*# 32bit)" = "`${1}'$($Latest.FileName32)'`${2}"
"(?i)(^\s*)'.*'(\s*# 64bit)" = "`${1}'$($Latest.FileName64)'`${2}"
}
}
}
function global:au_GetLatest {
$stableVersionFile = "$env:TEMP\EdgeDriverLatestStable.txt"
Invoke-WebRequest -URI $releases -OutFile $stableVersionFile -UseBasicParsing
$packageVersion = Get-Content $stableVersionFile
$url32 = "https://msedgedriver.azureedge.net/$packageVersion/edgedriver_win32.zip"
$url64 = "https://msedgedriver.azureedge.net/$packageVersion/edgedriver_win64.zip"
@{
Version = $packageVersion
URL32 = $url32
URL64 = $url64
ChecksumType32 = 'sha256'
ChecksumType64 = 'sha256'
}
}
Update-Package -ChecksumFor none
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Chromium and Microsoft teams. All Rights Reserved.
-
- kb2919355 (≥ 1.0.20160915)
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.
chocolatey-community (maintainer) on 12 Mar 2025 12:17:12 +00:00:
User 'chocolatey-community' (maintainer) submitted package.
chocolatey-ops (reviewer) on 12 Mar 2025 12:53:11 +00:00:
selenium-chromium-edge-driver has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 13 Mar 2025 07:09:35 +00:00:
selenium-chromium-edge-driver has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/22770ea09982bb94b0e35216be139914 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 01 Apr 2025 12:57:38 +00:00:
We've found selenium-chromium-edge-driver v134.0.3124.66 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.
chocolatey-ops (reviewer) on 16 Apr 2025 12:58:43 +00:00:
Unfortunately there has not been progress to move selenium-chromium-edge-driver v134.0.3124.66 towards an approved status within 15 days after the last review message, so we need to close (reject) the package version at this time. If you want to pick this version up and move it towards approval in the future, use the contact site admins link on the package page and we can move it back into a submitted status so you can submit updates.
Status Change - Changed status of package from 'submitted' to 'rejected'.