summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1829944_411_ca.py
blob: 8147063c7d2e4935af09dd708e8f1f9ef58312e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import pytest

URL = "https://411.ca"
UNSUPPORTED_CSS = "ngb-alert.header-outdated-alert"


@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    await client.navigate(URL)
    assert not client.find_css(UNSUPPORTED_CSS)


@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    await client.navigate(URL)
    assert client.find_css(UNSUPPORTED_CSS)