Skip to content

Commit 53075fe

Browse files
As per PR # 123 review comments, code change is implemented.
1 parent 93e709d commit 53075fe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pages/gfobt_test_kits/gfobt_test_kits_page.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class GFOBTTestKitsPage(BasePage):
88
def __init__(self, page: Page):
99
super().__init__(page)
1010
self.page = page
11+
self.test_kits_link = self.page.get_by_text("gFOBT Test Kits")
12+
self.test_kits_header = self.page.get_by_text("gFOBT Test Kits")
1113

1214
self.test_kit_logging_page = self.page.get_by_role(
1315
"link", name="Test Kit Logging"
@@ -35,3 +37,8 @@ def go_to_test_kit_result_page(self) -> None:
3537
def go_to_create_qc_kit_page(self) -> None:
3638
"""Navigate to the Create QC Kit page."""
3739
self.click(self.create_qc_kit_page)
40+
41+
def open_test_kits_report(self):
42+
self.test_kits_link.click()
43+
44+

0 commit comments

Comments
 (0)