Skip to content

Commit

Permalink
Additional debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
wcgunter committed Nov 14, 2023
1 parent e4ed5c0 commit fe85d0f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cws-test/src/test/java/jpl/cws/test/WebTestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,20 @@ protected void login() {
log.info("Entering password...");
passwordField.sendKeys(PASSWORD);

try {
screenShot("post-user-pass");
} catch (IOException e) {
throw new RuntimeException(e);
}

waitForElementID("submit");

log.info("Clicking submit button.");
WebElement submitBtn = findElById("submit");
submitBtn.click();

try {
screenShot("temp");
screenShot("post-submit-btn");
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit fe85d0f

Please sign in to comment.