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

URL = "https://ib.absa.co.za/absa-online/login.jsp"
UNSUPPORTED_ALERT = "Browser unsupported"


@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    await client.navigate(URL)
    assert client.find_css("html.gecko")


@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    alert = await client.await_alert(UNSUPPORTED_ALERT)
    await client.navigate(URL)
    await alert
    assert client.find_css("html.unknown")