Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Mar 22, 2024
1 parent cac04c6 commit e1ed975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HackMdApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private void GrabSessionCookie()
options.AddArgument("--headless=new");

using IWebDriver driver = new RemoteWebDriver(new Uri(_seleniumHost),options);
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(120));

// Navigate to Notes GitHub auth
driver.Navigate().GoToUrl($"https://{HackMdHost}/auth/github");
Expand Down

0 comments on commit e1ed975

Please sign in to comment.