Skip to content

Commit 7cc0062

Browse files
Copilotvharseko
andauthored
fix: increase Selenium wait timeout in BaseTest from 10s to 30s to avoid flaky IT test failures
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenAM/sessions/4123b9ed-4e9c-45b6-be2f-0088d4b3f336 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
1 parent 211ac6e commit 7cc0062

File tree

1 file changed

+1
-1
lines changed
  • openam-server/src/test/java/org/openidentityplatform/openam/test/integration

1 file changed

+1
-1
lines changed

openam-server/src/test/java/org/openidentityplatform/openam/test/integration/BaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void webdriverSetup() {
5151
options.addArguments("--remote-allow-origins=*","--headless", "--disable-dev-shm-usage", "--no-sandbox", "--verbose");
5252
//options.addArguments("--remote-allow-origins=*", "--verbose");
5353
driver = new ChromeDriver(options);
54-
wait = new WebDriverWait(driver, Duration.ofSeconds(10));
54+
wait = new WebDriverWait(driver, Duration.ofSeconds(30));
5555
}
5656

5757
@AfterClass

0 commit comments

Comments
 (0)