This is an automated email from the ASF dual-hosted git repository. thiagohp pushed a commit to branch feature/coffeescript-to-typescript in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/feature/coffeescript-to-typescript by this push: new eb375339d Testing logging in Jenkins builds eb375339d is described below commit eb375339de5c716c3153fba0314b893513434a52 Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br> AuthorDate: Sat Jun 7 09:07:26 2025 -0300 Testing logging in Jenkins builds --- .../integration/TapestryBeanValidationIntegrationTests.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java index 5d84b892f..962dae35f 100644 --- a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java +++ b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java @@ -17,6 +17,7 @@ import org.apache.tapestry5.test.SeleniumTestCase; import org.apache.tapestry5.test.TapestryTestConfiguration; import org.openqa.selenium.By; import org.openqa.selenium.support.ui.ExpectedConditions; +import org.slf4j.LoggerFactory; import org.testng.annotations.Test; @Test(singleThreaded = true, groups = "integration") @@ -111,6 +112,9 @@ public class TapestryBeanValidationIntegrationTests extends SeleniumTestCase { openLinks("BeanEditForm Validation Demo"); openLinks("BeanEditForm Validation Demo");// TODO: remove this + + LoggerFactory.getLogger(TapestryBeanValidationIntegrationTests.class) + .warn("I'm here!!!"); // Ugly hack to fix the "Unable to locate element: //input[@type='submit']" error. // I have no idea why it's failing here but not in other tests and pages.