@@ -23,10 +23,8 @@ def __init__(self, page: Page):
2323
2424 # Main Menu
2525 self .view_appointments = self .page .get_by_role ("link" , name = "View appointments" )
26- self .patients_that_require_colonoscopy_assessment_appointments = (
27- self .page .get_by_role (
28- "link" , name = "Patients that Require Colonoscopy Assessment Appointments"
29- )
26+ self .patients_that_require_colonoscopy_assessment_appointments = self .page .get_by_role (
27+ "link" , name = "Patients that Require Colonoscopy Assessment Appointments"
3028 )
3129 self .patients_that_require_colonoscopy_assessment_appointments_bowl_scope = self .page .get_by_role (
3230 "link" ,
@@ -35,55 +33,53 @@ def __init__(self, page: Page):
3533 self .patients_that_require_surveillance_appointments = self .page .get_by_role (
3634 "link" , name = "Patients that Require Surveillance Appointments"
3735 )
38- self .patients_that_require_post_investigation_appointments = (
39- self .page .get_by_role (
40- "link" , name = "Patients that Require Post-Investigation Appointments"
41- )
36+ self .patients_that_require_post_investigation_appointments = self .page .get_by_role (
37+ "link" , name = "Patients that Require Post-Investigation Appointments"
4238 )
4339 self .set_availability = self .page .get_by_role ("link" , name = "Set Availability" )
4440
4541 # Top menu interactions
46- def click_sub_menu_link (self ):
42+ def click_sub_menu_link (self ) -> None :
4743 self .sub_menu_link .click ()
4844
49- def click_hide_sub_menu_link (self ):
45+ def click_hide_sub_menu_link (self ) -> None :
5046 self .hide_sub_menu_link .click ()
5147
52- def click_select_org_link (self ):
48+ def click_select_org_link (self ) -> None :
5349 self .select_org_link .click ()
5450
55- def click_back_button (self ):
51+ def click_back_button (self ) -> None :
5652 self .back_button .click ()
5753
58- def click_release_notes_link (self ):
54+ def click_release_notes_link (self ) -> None :
5955 self .release_notes_link .click ()
6056
61- def click_refresh_alerts_link (self ):
57+ def click_refresh_alerts_link (self ) -> None :
6258 self .refresh_alerts_link .click ()
6359
64- def click_user_guide_link (self ):
60+ def click_user_guide_link (self ) -> None :
6561 self .user_guide_link .click ()
6662
67- def click_help_link (self ):
63+ def click_help_link (self ) -> None :
6864 self .help_link .click ()
6965
7066 # Main Menu interactions
71- def click_view_appointments (self ):
67+ def click_view_appointments (self ) -> None :
7268 self .view_appointments .click ()
7369
74- def click_patients_that_require_colonoscopy_assessment_appointments (self ):
70+ def click_patients_that_require_colonoscopy_assessment_appointments (self ) -> None :
7571 self .patients_that_require_colonoscopy_assessment_appointments .click ()
7672
7773 def click_patients_that_require_colonoscopy_assessment_appointments_bowl_scope (
7874 self ,
79- ):
75+ ) -> None :
8076 self .patients_that_require_colonoscopy_assessment_appointments_bowl_scope .click ()
8177
82- def click_patients_that_require_surveillance_appointments (self ):
78+ def click_patients_that_require_surveillance_appointments (self ) -> None :
8379 self .patients_that_require_surveillance_appointments .click ()
8480
85- def click_patients_that_require_post_investigation_appointments (self ):
81+ def click_patients_that_require_post_investigation_appointments (self ) -> None :
8682 self .patients_that_require_post_investigation_appointments .click ()
8783
88- def click_set_availability (self ):
84+ def click_set_availability (self ) -> None :
8985 self .set_availability .click ()
0 commit comments