1515 RecordDiagnosisDatePage ,
1616)
1717from pages .screening_subject_search .diagnostic_test_outcome_page import (
18- DiagnosticTestOutcomePage ,
18+ DiagnosticTestOutcomePage ,OutcomeOfDiagnosticTest
1919)
2020from pages .datasets .investigation_dataset_page import (
2121 InvestigationDatasetsPage ,
@@ -217,7 +217,7 @@ def after_high_risk_result(page: Page) -> None:
217217
218218 # The following code is on the diagnostic test outcome page
219219 DiagnosticTestOutcomePage (page ).verify_diagnostic_test_outcome ("High-risk findings" )
220- DiagnosticTestOutcomePage (page ).select_test_outcome_option ("20365" )
220+ DiagnosticTestOutcomePage (page ).select_test_outcome_option (OutcomeOfDiagnosticTest . Refer_Surveillance )
221221 DiagnosticTestOutcomePage (page ).click_save_button ()
222222
223223def after_lnpcp_result (page : Page ) -> None :
@@ -235,7 +235,7 @@ def after_lnpcp_result(page: Page) -> None:
235235
236236 # The following code is on the diagnostic test outcome page
237237 DiagnosticTestOutcomePage (page ).verify_diagnostic_test_outcome ("LNPCP" )
238- DiagnosticTestOutcomePage (page ).select_test_outcome_option ("20365" )
238+ DiagnosticTestOutcomePage (page ).select_test_outcome_option (OutcomeOfDiagnosticTest . Refer_Surveillance )
239239 DiagnosticTestOutcomePage (page ).click_save_button ()
240240
241241def handover_subject_to_symptomatic_care (page : Page ) -> None :
@@ -286,7 +286,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
286286
287287 # This needs to be repeated for two subjects, one old and one not - High Risk Result
288288 # Older patient
289- nhs_no = "9109877185 "
289+ nhs_no = "9408053060 "
290290 go_to_investigation_datasets_page (page , nhs_no )
291291
292292 # The following code is on the investigation datasets page
@@ -301,7 +301,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
301301 handover_subject_to_symptomatic_care (page )
302302
303303 # Younger patient
304- nhs_no = "9624131880 "
304+ nhs_no = "9867151259 "
305305 go_to_investigation_datasets_page (page , nhs_no )
306306
307307 # The following code is on the investigation datasets page
@@ -331,7 +331,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
331331
332332 # This needs to be repeated for two subjects, one old and one not - LNPCP Result
333333 # Older patient
334- nhs_no = "9648064792 "
334+ nhs_no = "9546869694 "
335335 go_to_investigation_datasets_page (page , nhs_no )
336336
337337 # The following code is on the investigation datasets page
@@ -346,7 +346,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
346346 handover_subject_to_symptomatic_care (page )
347347
348348 # Younger patient
349- nhs_no = "9627060208 "
349+ nhs_no = "9546692670 "
350350 go_to_investigation_datasets_page (page , nhs_no )
351351
352352 # The following code is on the investigation datasets page
@@ -374,7 +374,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
374374 )
375375
376376 # This needs to be repeated for 1 subject, age does not matter - Normal Result
377- nhs_no_normal = "9965184321 "
377+ nhs_no_normal = "9692517950 "
378378 go_to_investigation_datasets_page (page , nhs_no_normal )
379379
380380 # The following code is on the investigation datasets page
@@ -404,7 +404,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
404404 DiagnosticTestOutcomePage (page ).verify_diagnostic_test_outcome (
405405 "Normal (No Abnormalities"
406406 )
407- DiagnosticTestOutcomePage (page ).select_test_outcome_option ("20360" )
407+ DiagnosticTestOutcomePage (page ).select_test_outcome_option (OutcomeOfDiagnosticTest . Investigation_Complete )
408408 DiagnosticTestOutcomePage (page ).click_save_button ()
409409
410410 SubjectScreeningSummaryPage (page ).verify_latest_event_status_value (
0 commit comments