Skip to content

Commit

Permalink
Merge pull request #202 from nodlesh/fix/get-person-cred-testid
Browse files Browse the repository at this point in the history
BCW added new testids to locators for get person cred page
  • Loading branch information
nodlesh authored Oct 11, 2023
2 parents 4094c97 + 22b4935 commit 23e0708
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ class GetPersonCredentialPage(BasePage):

# Locators
on_this_page_text_locator = "Person Credential"
get_your_person_credential_locator = (AppiumBy.ACCESSIBILITY_ID, "Get your Person credential")
get_this_later_locator = (AppiumBy.ACCESSIBILITY_ID, "Get this later")
#get_your_person_credential_locator = (AppiumBy.ACCESSIBILITY_ID, "Get your Person credential")
get_your_person_credential_locator = (AppiumBy.ID, "com.ariesbifold:id/GetYourPersonCredential")
#get_this_later_locator = (AppiumBy.ACCESSIBILITY_ID, "Get this later")
get_this_later_locator = (AppiumBy.ID, "com.ariesbifold:id/GetThisLater")

def on_this_page(self):
return super().on_this_page(self.on_this_page_text_locator)
Expand Down

0 comments on commit 23e0708

Please sign in to comment.