test_1886285_188628509_laptopmag_com.py (595B)
1 import pytest 2 3 URL = "https://www.laptopmag.com/" 4 5 6 @pytest.mark.skip_platforms("android") 7 @pytest.mark.need_visible_scrollbars 8 @pytest.mark.asyncio 9 @pytest.mark.with_interventions 10 async def test_enabled(client): 11 await client.navigate(URL, wait="none") 12 client.test_future_plc_trending_scrollbar(shouldFail=False) 13 14 15 @pytest.mark.skip_platforms("android") 16 @pytest.mark.need_visible_scrollbars 17 @pytest.mark.asyncio 18 @pytest.mark.without_interventions 19 async def test_disabled(client): 20 await client.navigate(URL, wait="none") 21 client.test_future_plc_trending_scrollbar(shouldFail=True)