test_1949152_gatufotogruppen_com.py (286B)
1 import pytest 2 3 URL = "https://www.gatufotogruppen.se/?page_id=5497" 4 DESIRED_CSS = ".ultp-block-image" 5 6 7 @pytest.mark.asyncio 8 @pytest.mark.without_interventions 9 async def test_regression(client): 10 await client.navigate(URL) 11 assert client.await_css(DESIRED_CSS, is_displayed=True)