tor-browser

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

test_1898531_cwb_digital.py (316B)


      1 import pytest
      2 
      3 URL = "https://www.cwb.digital/apps/cwbDigital/#_frmLogin"
      4 LOGIN_CSS = "#okta_login"
      5 
      6 
      7 # This is just a regression test.
      8 
      9 
     10 @pytest.mark.asyncio
     11 @pytest.mark.without_interventions
     12 async def test_disabled(client):
     13    await client.navigate(URL)
     14    assert client.await_css(LOGIN_CSS, is_displayed=True)