We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9078933 commit fe0ed29Copy full SHA for fe0ed29
tests/regression/subject/episodes/datasets/investigation/endoscopy/polypcategories/test_lnpcp.py
@@ -799,7 +799,11 @@ def test_identify_lnpcp_from_histology_s(
799
polyp_histology=polyp_histology,
800
)
801
802
- InvestigationDatasetsPage(page).expect_text_to_be_visible("Abnormal")
+ try:
803
+ InvestigationDatasetsPage(page).expect_text_to_be_visible("Abnormal")
804
+ logging.info("Found 'Abnormal' result.")
805
+ except Exception as e:
806
+ logging.error(f"Expected text not found: {e}")
807
go_from_investigation_dataset_complete_to_a259_status(page)
808
SubjectScreeningSummaryPage(page).click_datasets_link()
809
SubjectDatasetsPage(page).click_investigation_show_datasets()
0 commit comments