We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 643a0da commit 484a309Copy full SHA for 484a309
Commands/InstallDependencies.cs
@@ -43,7 +43,15 @@ public static void InstallChromeDriver()
43
Console.WriteLine("[+] Downloading chromedriver...");
44
45
var client = new WebClient();
46
- if (chromeVersion == "98")
+ if (chromeVersion == "100")
47
+ {
48
+ client.DownloadFile("https://chromedriver.storage.googleapis.com/100.0.4896.20/chromedriver_win32.zip", chromeDriverName);
49
+ }
50
+ else if (chromeVersion == "99")
51
52
+ client.DownloadFile("https://chromedriver.storage.googleapis.com/99.0.4844.51/chromedriver_win32.zip", chromeDriverName);
53
54
+ else if (chromeVersion == "98")
55
{
56
client.DownloadFile("https://chromedriver.storage.googleapis.com/98.0.4758.48/chromedriver_win32.zip", chromeDriverName);
57
}
0 commit comments