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 19fb2d6fe701ebeff5f4aa96903a33348795ee3e Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br> AuthorDate: Sun Jun 8 16:20:22 2025 -0300 Revert "More test logging (attempt 4)" This reverts commit e02d8e005d8e9031eaa7d6233d75e354a6ba7b52. --- .../src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 64464ebf3..350978c9d 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,10 +1449,10 @@ public abstract class SeleniumTestCase extends Assert implements Selenium System.out.println("Continuing execution after exception above."); } catch (RuntimeException e) { - 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")); + LOGGER.error("selenium.browserbot.getCurrentWindow(): " + getEval("selenium.browserbot.getCurrentWindow()")); + LOGGER.error("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").attributes : " + getEval("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").attributes")); + LOGGER.error("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").dataset : " + getEval("selenium.browserbot.getCurrentWindow().document.querySelector(\"body\").dataset")); throw e; }