tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_1979612_scrolller_com.py (384B)


      1 import pytest
      2 
      3 URL = "https://scrolller.com/"
      4 
      5 SUPPORTED_CSS = "#main-header"
      6 UNSUPPORTED_CSS = "html#__next_error__"
      7 
      8 
      9 @pytest.mark.asyncio
     10 @pytest.mark.without_interventions
     11 async def test_regression(client):
     12    await client.navigate(URL, wait="none")
     13    assert client.await_css(SUPPORTED_CSS, is_displayed=True)
     14    assert not client.find_css(UNSUPPORTED_CSS, is_displayed=True)