Skip to content

Commit

Permalink
driver timeout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BySuspect committed Oct 1, 2024
1 parent e45c290 commit f88d1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Views/MainView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private Task runClaimProgress(UserModel user)
IWebDriver driver = new ChromeDriver(service, options);

// Some driver improvements
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(5);
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(3);
driver.Manage().Window.Size = new System.Drawing.Size(2000, 1600);

/* Login */
Expand Down

0 comments on commit f88d1ad

Please sign in to comment.