This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch javax in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit 034164988f39188b192c4ad8c1f060d8bf577abb Author: Ben Weidig <[email protected]> AuthorDate: Sat Jan 31 13:56:17 2026 +0100 TAP5-2816: SeleniumTestCase increase wait time on opening links The test run fine on my machine, but not on the Apache CI. As it fails with a TimeoutException, this is the only simple thing to do before adding more debug output for CI. --- .../src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java index bb477cecf..999d1866c 100644 --- a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java +++ b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java @@ -1727,7 +1727,7 @@ public abstract class SeleniumTestCase extends Assert implements Selenium // TAP5-2816: Firefox Security Manager might veto By.linkText atoms. (NS_ERROR_XPC_SECURITY_MANAGER_VETO) // Using an XPath selector does the exact same thing. String xpath = "//a[normalize-space(.)=" + escapeXPathContent(text) + "]"; - waitForCondition(ExpectedConditions.presenceOfElementLocated(By.xpath(xpath)), 3); + waitForCondition(ExpectedConditions.presenceOfElementLocated(By.xpath(xpath)), 10); } catch (Exception e) {
