Skip to content

Commit

Permalink
Update registration-and-edit-page.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsereko committed Mar 21, 2024
1 parent df6e27b commit 7907745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/pages/registration-and-edit-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class RegistrationAndEditPage {
readonly givenNameInput = () => this.page.locator('#givenName');
readonly middleNameInput = () => this.page.locator('#middleName');
readonly familyNameInput = () => this.page.locator('#familyName');
readonly sexRadioButton = (sex: PatientRegistrationSex) => this.page.locator(`label[for=${sex}]`);
readonly sexRadioButton = (sex: PatientRegistrationSex) => this.page.locator(`label[for=gender-option-${sex}]`);
readonly birthdateInput = () => this.page.locator('#birthdate');
readonly address1Input = () => this.page.locator('#address1');
readonly countryInput = () => this.page.locator('#country');
Expand Down

0 comments on commit 7907745

Please sign in to comment.