Downloads:
22,939
Downloads of v 134.0.3124.66:
8
Last Update:
12 Mar 2025
Published Date:
12 Mar 2025
Package Maintainer(s):
Software Author(s):
- Chromium and Microsoft teams
Tags:
selenium chromium microsoft-edge driver webdriver testing web-applications freeware- 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
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
134.0.3124.66 | Updated: 12 Mar 2025
- 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:
22,939
Downloads of v 134.0.3124.66:
8
Published:
12 Mar 2025
Maintainer(s):
Software Author(s):
- Chromium and Microsoft teams
Selenium Chromium Edge Driver 134.0.3124.66
(Waiting for Maintainer to take corrective action)
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 version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
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.