Skip to content

Commit 484a309

Browse files
committed
Added support for Chrome 99 & 100
1 parent 643a0da commit 484a309

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Commands/InstallDependencies.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,15 @@ public static void InstallChromeDriver()
4343
Console.WriteLine("[+] Downloading chromedriver...");
4444

4545
var client = new WebClient();
46-
if (chromeVersion == "98")
46+
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")
4755
{
4856
client.DownloadFile("https://chromedriver.storage.googleapis.com/98.0.4758.48/chromedriver_win32.zip", chromeDriverName);
4957
}

0 commit comments

Comments
 (0)