Change Chromium back to WaitUntilNavigation.Networkidle0

This commit is contained in:
Glax 2025-01-15 23:14:15 +01:00
parent 268441a47d
commit d0b775444d

View File

@ -76,7 +76,7 @@ internal class ChromiumDownloadClient : DownloadClient
IResponse response;
try
{
response = page.GoToAsync(url, WaitUntilNavigation.Load).Result;
response = page.GoToAsync(url, WaitUntilNavigation.Networkidle0).Result;
Log($"Page loaded. {url}");
}
catch (Exception e)