tor-browser

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

test_1898928_cleanfeed_net.py (305B)


      1 import pytest
      2 
      3 URL = "https://cleanfeed.net/sign-up"
      4 
      5 UNSUPPORTED_TEXT = "compatible"
      6 
      7 
      8 @pytest.mark.asyncio
      9 @pytest.mark.without_interventions
     10 async def test_regression(client):
     11    await client.navigate(URL)
     12    await client.stall(3)
     13    assert not client.find_text(UNSUPPORTED_TEXT, is_displayed=True)