test_1902410_centerparcs_ie.py (341B)
1 import asyncio 2 3 import pytest 4 5 URL = "https://www.centerparcs.ie/" 6 7 UNSUPPORTED_TEXT = "not support the current browser" 8 9 10 @pytest.mark.asyncio 11 @pytest.mark.without_interventions 12 async def test_regression(client): 13 await client.navigate(URL) 14 await asyncio.sleep(2) 15 assert not client.find_text(UNSUPPORTED_TEXT, is_displayed=True)