Skip to content

Commit

Permalink
Update CAVDStudyTest.java (#126)
Browse files Browse the repository at this point in the history
- webpart title tag now uses a valid Id (no spaces) in anchor tag, instead of name with spaces
  • Loading branch information
labkey-martyp authored Sep 7, 2023
1 parent 633166d commit 29d24e2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ private void doVerifyStudyDesign()
addGroup("Vaccine2", true, "3", 3);
addTimepoint("CAVDImmTimepoint", "0", TimeUnit.Days);
finishRevision();
waitForText("Immunization Schedule", 4, defaultWaitForPage); // WebPart title and schedule table header
waitForText("Immunization Schedule", 3, defaultWaitForPage); // WebPart title and schedule table header
assertElementPresent(Locator.tagWithId("a", "ImmunizationSchedule")); // Verify anchor tag on WebPart title
assertTextPresent(_expectedImmunizationText);
assertElementNotPresent(Locator.tagWithText("div", "30")); // From deleted rows

Expand Down

0 comments on commit 29d24e2

Please sign in to comment.