-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 6583-issue-with-name-search-gender
- Loading branch information
Showing
16 changed files
with
133 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,36 @@ | ||
import { Selector } from 'testcafe' | ||
|
||
class AddGroupMember { | ||
constructor () { | ||
|
||
this.groupNumberInput = Selector('#groupNumber') | ||
this.phnInput = Selector('#phn') | ||
this.groupMemberNumberInput = Selector('#groupMemberNumber') | ||
this.departmentNumberInput = Selector('#departmentNumber') | ||
this.coverageEffectiveDateInput = Selector('#coverageEffectiveDate') | ||
this.divSelectedDate = Selector('div').withAttribute('class', 'dp__overlay_cell_active dp__overlay_cell_pad') | ||
this.telephoneInput = Selector('#telephone') | ||
this.address1Input = Selector('#addressLine1') | ||
this.address2Input = Selector('#addressLine2') | ||
this.address3Input = Selector('#addressLine3') | ||
this.address4Input = Selector('#addressLine4') | ||
this.postalCodeInput = Selector('#postalCode') | ||
this.mailingAddress1Input = Selector('#mailingAddress1') | ||
this.mailingAddress2Input = Selector('#mailingAddress2') | ||
this.mailingAddress3Input = Selector('#mailingAddress3') | ||
this.mailingAddress4Input = Selector('#mailingAddress4') | ||
this.mailingPostalCodeInput = Selector('#mailingPostalCode') | ||
this.spouse = Selector('#spousePhn') | ||
this.dependentPhn = Selector('#dependentPHN') | ||
this.dependentList = Selector('#dependentList') | ||
this.dependentText = this.dependentList.child('li') | ||
constructor() { | ||
this.groupNumberInput = Selector('#groupNumber') | ||
this.phnInput = Selector('#phn') | ||
this.groupMemberNumberInput = Selector('#groupMemberNumber') | ||
this.departmentNumberInput = Selector('#departmentNumber') | ||
this.coverageEffectiveDateInput = Selector('#coverageEffectiveDate') | ||
this.divSelectedDate = Selector('div').withAttribute('class', 'dp__overlay_cell_active dp__overlay_cell_pad') | ||
this.telephoneInput = Selector('#telephone') | ||
this.address1Input = Selector('#addressLine1') | ||
this.address2Input = Selector('#addressLine2') | ||
this.address3Input = Selector('#addressLine3') | ||
this.address4Input = Selector('#addressLine4') | ||
this.postalCodeInput = Selector('#postalCode') | ||
this.mailingAddress1Input = Selector('#mailingAddress1') | ||
this.mailingAddress2Input = Selector('#mailingAddress2') | ||
this.mailingAddress3Input = Selector('#mailingAddress3') | ||
this.mailingAddress4Input = Selector('#mailingAddress4') | ||
this.mailingPostalCodeInput = Selector('#mailingPostalCode') | ||
this.spouse = Selector('#spousePhn') | ||
this.dependentPhn = Selector('#dependentPHN') | ||
this.dependentList = Selector('#dependentList') | ||
this.dependentText = this.dependentList.child('li') | ||
|
||
this.errorText = Selector('div').withAttribute('class','error-text') | ||
this.errorText = Selector('div').withAttribute('class', 'error-text') | ||
|
||
this.submitButton = Selector('button[type="submit"]') | ||
this.clearButton = Selector('button[type="button"]').withText('Clear') | ||
this.addButton = Selector('button[type="button"]').withText('Add') | ||
this.removeIcon = Selector('#removeIcon') | ||
|
||
} | ||
this.submitButton = Selector('button[type="submit"]') | ||
this.clearButton = Selector('button[type="button"]').withText('Clear') | ||
this.addButton = Selector('button[type="button"]').withText('Add') | ||
this.removeIcon = Selector('#removeIcon') | ||
} | ||
} | ||
|
||
export default new AddGroupMember() | ||
export default new AddGroupMember() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.