Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ private void createNewLocalDriverInstance(DriverType driverType, int retryAttemp
disableCacheEdgeAndChrome();
}
case EDGE -> {
// Fix for Microsoft Edge CDN migration from msedgedriver.azureedge.net to msedgedriver.microsoft.com
// This ensures Selenium Manager uses the correct download URL for EdgeDriver
System.setProperty("SE_DRIVER_MIRROR_URL", "https://msedgedriver.microsoft.com");
setDriver(new EdgeDriver(optionsManager.getEdOptions()));
disableCacheEdgeAndChrome();
}
Expand Down
Loading