tor-browser

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

test_1982878_fanplus_co_jp.py (374B)


      1 import pytest
      2 
      3 # This site once failed with a redirect loop with a Firefox UA
      4 
      5 URL = "https://fanplus.co.jp/feature/artistarena"
      6 SUCCESS_CSS = "#aacontents"
      7 
      8 
      9 @pytest.mark.only_platforms("android")
     10 @pytest.mark.asyncio
     11 @pytest.mark.without_interventions
     12 async def test_regression(client):
     13    await client.navigate(URL, wait="none")
     14    assert client.await_css(SUCCESS_CSS)