We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca996c4 commit 04f63eeCopy full SHA for 04f63ee
pages/invitations_monitoring_page.py
@@ -0,0 +1,19 @@
1
+from playwright.sync_api import Page
2
+
3
+class InvitationsMonitoring:
4
+ def __init__(self, page: Page):
5
+ self.page = page
6
+ # Call and Recall - page links
7
+ self.bcss009_invitations_plan = self.page.get_by_role("link", name="BCS009")
8
+ self.bcss001_invitations_plan = self.page.get_by_role("link", name="BCS001")
9
+ #self.Create_a_Plan_page = self.page.get_by_role("button", name="Create a Plan")
10
+ #self.Set_all_page = self.page.get_by_role("link", name="Set all")
11
12
+ def go_to_bcss009_invitations_plan_page(self):
13
+ self.bcss009_invitations_plan.click()
14
15
+ def go_to_bcss001_invitations_plan_page(self):
16
+ self.bcss001_invitations_plan.click()
17
18
19
0 commit comments