summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1797400_mobilevikings_be.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/webcompat/interventions/tests/test_1797400_mobilevikings_be.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1797400_mobilevikings_be.py b/testing/webcompat/interventions/tests/test_1797400_mobilevikings_be.py
new file mode 100644
index 0000000000..c3575b9735
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1797400_mobilevikings_be.py
@@ -0,0 +1,31 @@
+import pytest
+from webdriver.error import NoSuchElementException
+
+URL = "https://mobilevikings.be/en/registration/?product_id=155536813-1-1"
+COOKIES_CSS = "#btn-accept-cookies"
+DATE_CSS = "input.date-input[name='birth_date']"
+
+
+async def date_after_typing(client):
+ await client.navigate(URL)
+ try:
+ client.await_css(COOKIES_CSS, timeout=3).click()
+ client.await_element_hidden(client.css(COOKIES_CSS))
+ except NoSuchElementException:
+ pass
+ date = client.await_css(DATE_CSS)
+ client.scroll_into_view(date)
+ date.send_keys("1")
+ return date.property("value")
+
+
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ assert "1_/__/____" == await date_after_typing(client)
+
+
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ assert "__/__/____" == await date_after_typing(client)