summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py')
-rw-r--r--testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py b/testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py
new file mode 100644
index 0000000000..e8addbeb68
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1817520_ersthelfer_tv.py
@@ -0,0 +1,36 @@
+import pytest
+
+URL = "https://book.ersthelfer.tv/"
+DATE = "12.12.2020"
+PLACEHOLDER = "__.__.____"
+
+CITY_CSS = "#city_id"
+PERSON_CSS = "#no_of_person"
+CITY_OPTION_XPATH = "//select[@name='city_id']/option[2]"
+PERSON_OPTION_XPATH = "//select[@name='no_of_person']/option[2]"
+DATE_PICKER_CSS = "[class*='date-picker-custom-wrapper'] input"
+
+
+async def set_date(client):
+ client.await_css(CITY_CSS).click()
+ client.await_xpath(CITY_OPTION_XPATH).click()
+
+ client.await_css(PERSON_CSS).click()
+ client.await_xpath(PERSON_OPTION_XPATH).click()
+ date_input = client.await_css(DATE_PICKER_CSS, is_displayed=True)
+ date_input.send_keys(DATE)
+ return date_input.property("value")
+
+
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ await client.navigate(URL)
+ assert DATE == await set_date(client)
+
+
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ await client.navigate(URL)
+ assert PLACEHOLDER == await set_date(client)