Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update InternetExplorer version #134

Merged
merged 1 commit into from
Jul 23, 2021
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
6 changes: 3 additions & 3 deletions WebDriverManager/DriverConfigs/Impl/InternetExplorerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ public virtual string GetName()

public virtual string GetUrl32()
{
return "http://selenium-release.storage.googleapis.com/3.141/IEDriverServer_Win32_3.141.59.zip";
return "https://selenium-release.storage.googleapis.com/3.150/IEDriverServer_Win32_3.150.1.zip";
}

public virtual string GetUrl64()
{
return "http://selenium-release.storage.googleapis.com/3.141/IEDriverServer_x64_3.141.59.zip";
return "https://selenium-release.storage.googleapis.com/3.150/IEDriverServer_x64_3.150.1.zip";
}

public virtual string GetBinaryName()
Expand All @@ -26,7 +26,7 @@ public virtual string GetBinaryName()

public virtual string GetLatestVersion()
{
return "3.141.59";
return "3.150.1";
}

public virtual string GetMatchingBrowserVersion()
Expand Down