Skip to content

Commit

Permalink
Trying to fix test #3368
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisala committed Nov 8, 2024
1 parent bb6f0a6 commit 6a198ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/integration-test/groovy/pages/ReportPage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ class ReportPage extends Page {
}

def markAsNotApplicable(String sectionId) {
notApplicableCheckbox(sectionId).value(true)
}

def notApplicableCheckbox(String sectionId) {
String sectionSelector = '#'+sectionId + " input[data-bind*=outputNotComplete]"
$(sectionSelector).value(true)
$(sectionSelector)
}

List getFormSections() {
Expand Down

0 comments on commit 6a198ee

Please sign in to comment.