Skip to content

Commit

Permalink
Fix response fields
Browse files Browse the repository at this point in the history
  • Loading branch information
petechd committed Jan 15, 2025
1 parent a173fa6 commit 62e7d6f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ class ViewSubmittedResponseBasePage extends BasePage {
}

metadataTerm(number = 1) {
return `.ons-description-list > dt:nth-of-type(${number})`;
return `.ons-description-list > .ons-description-list__item:nth-of-type(${number}) > dt`;
}

metadataValue(number = 1) {
return `.ons-description-list > dd:nth-of-type(${number})`;
return `.ons-description-list > .ons-description-list__item:nth-of-type(${number}) > dd`;
}

informationPanel() {
Expand Down

0 comments on commit 62e7d6f

Please sign in to comment.