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
commit e939060335e2e554b251e04e1bd660e223e01678 Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br> AuthorDate: Sun Jun 8 16:20:04 2025 -0300 Revert "More test logging (attempt 5)" This reverts commit b6822a66be09e22882a745a1e29b98d7f02aa19c. --- .../src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 9a8acc2cb..64464ebf3 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 @@ -1449,8 +1449,10 @@ public abstract class SeleniumTestCase extends Assert implements Selenium System.out.println("Continuing execution after exception above."); } catch (RuntimeException e) { - LOGGER.error("Exception happened: " + e.getMessage()); - LOGGER.error("User agent: " + getEval("navigator.userAgent")); + LOGGER.error("Exception happend: " + e.getMessage()); + LOGGER.error("selenium.browserbot: " + getEval("selenium.browserbot")); + LOGGER.error("document.querySelector(\"body\").attributes : " + getEval("document.querySelector(\"body\").attributes")); + LOGGER.error("document.querySelector(\"body\").dataset : " + getEval("document.querySelector(\"body\").dataset")); throw e; }