summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py')
-rw-r--r--testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py b/testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py
new file mode 100644
index 0000000000..33f0193b9a
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1855088_125039_hrmis2_eghrmis_gov_my.py
@@ -0,0 +1,25 @@
+import time
+
+import pytest
+
+URL = "https://hrmis2.eghrmis.gov.my/HRMISNET/Common/Main/Login.aspx"
+DIALOG_CSS = "#dialog4"
+
+
+async def is_dialog_shown(client):
+ await client.navigate(URL)
+ time.sleep(2)
+ dialog = client.await_css(DIALOG_CSS)
+ return client.is_displayed(dialog)
+
+
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ assert not await is_dialog_shown(client)
+
+
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ assert await is_dialog_shown(client)