|
2 | 2 | from playwright.sync_api import Page |
3 | 3 | from pages.logout.log_out_page import Logout |
4 | 4 | from pages.base_page import BasePage |
5 | | -from pages.screening_practitioner_appointments.appointment_calendar_page import AppointmentCalendar |
6 | | -from pages.screening_practitioner_appointments.appointment_detail_page import AppointmentDetail |
| 5 | +from pages.screening_practitioner_appointments.appointment_calendar_page import ( |
| 6 | + AppointmentCalendar, |
| 7 | +) |
| 8 | +from pages.screening_practitioner_appointments.appointment_detail_page import ( |
| 9 | + AppointmentDetail, |
| 10 | +) |
7 | 11 | from pages.screening_practitioner_appointments.screening_practitioner_appointments import ( |
8 | 12 | ScreeningPractitionerAppointmentsPage, |
| 13 | + ScreeningPractitionerDayView, |
9 | 14 | ) |
10 | 15 | from pages.datasets.subject_datasets_page import ( |
11 | 16 | SubjectDatasetsPage, |
|
15 | 20 | FitForColonoscopySspOptions, |
16 | 21 | AsaGradeOptions, |
17 | 22 | ) |
18 | | -from pages.screening_subject_search.advance_fobt_screening_episode_page import AdvanceFOBTScreeningEpisode |
19 | | -from pages.screening_subject_search.attend_diagnostic_test_page import AttendDiagnosticTest |
| 23 | +from pages.screening_subject_search.advance_fobt_screening_episode_page import ( |
| 24 | + AdvanceFOBTScreeningEpisode, |
| 25 | +) |
| 26 | +from pages.screening_subject_search.attend_diagnostic_test_page import ( |
| 27 | + AttendDiagnosticTest, |
| 28 | +) |
20 | 29 | from pages.screening_subject_search.subject_screening_summary import ( |
21 | 30 | SubjectScreeningSummary, |
22 | 31 | ) |
@@ -190,7 +199,9 @@ def test_compartment_5(page: Page, smokescreen_properties: dict) -> None: |
190 | 199 | ContactWithPatientPage(page).enter_start_time("11:00") |
191 | 200 | ContactWithPatientPage(page).enter_end_time("12:00") |
192 | 201 | ContactWithPatientPage(page).enter_discussion_record_text("Test Automation") |
193 | | - ContactWithPatientPage(page).select_outcome_dropdown_option("Post-investigation Appointment Not Required") |
| 202 | + ContactWithPatientPage(page).select_outcome_dropdown_option( |
| 203 | + "Post-investigation Appointment Not Required" |
| 204 | + ) |
194 | 205 | ContactWithPatientPage(page).click_save_button() |
195 | 206 |
|
196 | 207 | verify_subject_event_status_by_nhs_no( |
|
0 commit comments