tor-browser

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

test_1909448_fire_honeywell_com.py (268B)


      1 import pytest
      2 
      3 URL = "https://fire.honeywell.com/"
      4 LANDING_PAGE_CSS = ".landing-page"
      5 
      6 
      7 @pytest.mark.asyncio
      8 @pytest.mark.without_interventions
      9 async def test_regression(client):
     10    await client.navigate(URL, wait="load")
     11    assert client.find_css(LANDING_PAGE_CSS)