Skip to content

Commit 3cb690d

Browse files
committed
wip
1 parent 7bd268b commit 3cb690d

File tree

2 files changed

+255
-134
lines changed

2 files changed

+255
-134
lines changed

pages/screening_subject_search/reopen_fobt_screening_episode_page.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ def __init__(self, page: Page):
2626
"button", name="Reopen to Confirm Diagnostic Test Result and Outcome"
2727
)
2828
)
29+
self.reopen_to_reschedule_diagnostic_test_button = self.page.get_by_role(
30+
"button", name="Reopen to Reschedule Diagnostic Test"
31+
)
2932

3033
def click_reopen_to_book_an_assessment_button(self) -> None:
3134
"""Click the 'Reopen to book an assessment' button."""
@@ -48,3 +51,8 @@ def click_reopen_to_confirm_diagnostic_test_result_and_outcome_button(self) -> N
4851
self.safe_accept_dialog(
4952
self.reopen_to_confirm_diagnostic_test_result_and_outcome_button
5053
)
54+
55+
def click_reopen_to_reschedule_diagnostic_test_button(self) -> None:
56+
"""Click the 'Reopen to Reschedule Diagnostic Test' button."""
57+
self.safe_accept_dialog(self.reopen_to_reschedule_diagnostic_test_button)
58+

0 commit comments

Comments
 (0)