From 8b965b969472938c9ec081ae2a5e2afa4ca7050f Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Mon, 21 Apr 2025 17:53:47 +0100 Subject: [PATCH] DashboardTests: increase WaitUntilModalIsDisplayed to 10s resolves pipelines issue --- src/Jackett.IntegrationTests/DashboardTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.IntegrationTests/DashboardTests.cs b/src/Jackett.IntegrationTests/DashboardTests.cs index fd03a3992..28b9bce4c 100644 --- a/src/Jackett.IntegrationTests/DashboardTests.cs +++ b/src/Jackett.IntegrationTests/DashboardTests.cs @@ -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