tor-browser

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

test_1997687_sakti_kemenkeu_go_id.py (303B)


      1 import pytest
      2 
      3 URL = "https://sakti.kemenkeu.go.id/"
      4 SUPPORTED_CSS = "input[name=username]"
      5 
      6 
      7 @pytest.mark.asyncio
      8 @pytest.mark.without_interventions
      9 async def test_regression(client):
     10    await client.navigate(URL, wait="none")
     11    assert client.await_css(SUPPORTED_CSS, is_displayed=True, timeout=45)