DashboardTests: increase WaitUntilModalIsDisplayed to 10s

resolves pipelines issue
This commit is contained in:
ilike2burnthing
2025-04-21 17:53:47 +01:00
committed by GitHub
parent 6fda3de98e
commit 8b965b9694

View File

@@ -82,7 +82,7 @@ namespace Jackett.IntegrationTests
private bool WaitUntilModalIsDisplayed(string cssSelector)
{
var wait = new WebDriverWait(_webDriver, TimeSpan.FromSeconds(5));
var wait = new WebDriverWait(_webDriver, TimeSpan.FromSeconds(10));
var element = wait.Until(condition =>
{
try