e2e tests pass locally

This commit is contained in:
alexjanousekGSA
2025-05-02 10:43:07 -04:00
parent 149d8e3ce5
commit eff92773cc
11 changed files with 91 additions and 220 deletions

View File

@@ -163,13 +163,12 @@ def test_should_show_empty_text_box(
"main.tour_step", service_id=SERVICE_ONE_ID, template_id=fake_uuid, step_index=1
)
textbox = page.select_one(
".usa-input"
)
textbox = page.select_one(".usa-input")
assert "value" not in textbox
assert textbox["name"] == "placeholder_value"
assert textbox["class"] == [
"form-control", "usa-input",
"form-control",
"usa-input",
]
# data-module=autofocus is set on a containing element so it
# shouldnt also be set on the textbox itself