Skip to content

Commit 6f4681b

Browse files
committed
ci(e2e): use msedgedriver.microsoft.com host for Edge WebDriver
Microsoft disabled anonymous access to the old msedgewebdriverstorage.blob.core.windows.net host (now HTTP 409 'Public access is not permitted on this storage account'), which broke the Windows desktop E2E driver download for every version and marker. The current public host is https://msedgedriver.microsoft.com — verified the exact runtime build (148.0.3967.83/edgedriver_win64.zip) and the LATEST_RELEASE_<major>_WINDOWS / LATEST_STABLE markers all return 200 there. Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 461db48 commit 6f4681b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/e2e-desktop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,9 @@ jobs:
144144
$wv2Major = $wv2Version.Split('.')[0]
145145
Write-Host "WebView2 runtime version: $wv2Version (major $wv2Major)"
146146
147-
$base = "https://msedgewebdriverstorage.blob.core.windows.net/edgewebdriver"
147+
# Microsoft locked down the old msedgewebdriverstorage blob (now returns HTTP 409
148+
# "Public access is not permitted"); the current host is msedgedriver.microsoft.com.
149+
$base = "https://msedgedriver.microsoft.com"
148150
149151
# Ordered list of candidate driver versions to try.
150152
$candidates = [System.Collections.Generic.List[string]]::new()

0 commit comments

Comments
 (0)