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
4 changes: 2 additions & 2 deletions src/Uno.UITest.Puppeteer/SeleniumDriverManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ public static EdgeDriver FromEdgePath(string edgePath, EdgeOptions options)
public static EdgeDriver FromDriverPath(string driverPath, EdgeOptions options)
=> new EdgeDriver(driverPath, options);

private static Uri GetDriverLatestVersion(Version browserVersion) => new Uri($"https://msedgedriver.azureedge.net/LATEST_RELEASE_{browserVersion.Major}");
private static Uri GetDriverUri(Version browserVersion, string driverVersion) => new Uri($"https://msedgedriver.azureedge.net/{driverVersion}/edgedriver_win32.zip");
private static Uri GetDriverLatestVersion(Version browserVersion) => new Uri($"https://msedgedriver.microsoft.com/LATEST_RELEASE_{browserVersion.Major}");
private static Uri GetDriverUri(Version browserVersion, string driverVersion) => new Uri($"https://msedgedriver.microsoft.com/{driverVersion}/edgedriver_win32.zip");
}

private SeleniumDriverManager(string driverName)
Expand Down