@@ -51,35 +51,6 @@ async def test_gui_index(user: User, silent_logging, record_property) -> None:
5151 await user .should_see ("Download Datasets" )
5252
5353
54- @pytest .mark .e2e
55- @pytest .mark .flaky (retries = 2 , delay = 5 , only_on = [AssertionError ])
56- @pytest .mark .timeout (timeout = 60 * 2 )
57- @pytest .mark .parametrize (
58- ("application_id" , "application_name" , "expected_text" ),
59- [
60- (
61- "he-tme" ,
62- "Atlas H&E-TME" ,
63- "The Atlas H&E TME is an AI application" ,
64- ),
65- (
66- "test-app" ,
67- "test-app" , # TODO(Helmut): Check in with Ari
68- "This is the test application with two algorithms" ,
69- ),
70- ],
71- )
72- async def test_gui_home_to_application ( # noqa: PLR0913, PLR0917
73- user : User , application_id : str , application_name : str , expected_text : str , silent_logging : None , record_property
74- ) -> None :
75- """Test that the user sees the specific application page with expected content."""
76- record_property ("tested-item-id" , "SPEC-APPLICATION-SERVICE, SPEC-GUI-SERVICE" )
77- await user .open ("/" )
78- await user .should_see (application_name , retries = 100 )
79- user .find (marker = f"SIDEBAR_APPLICATION:{ application_id } " ).click ()
80- await user .should_see (expected_text , retries = 300 )
81-
82-
8354@pytest .mark .e2e
8455@pytest .mark .long_running
8556@pytest .mark .flaky (retries = 2 , delay = 5 , only_on = [AssertionError ])
0 commit comments