We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee733e commit 305ae7bCopy full SHA for 305ae7b
form-designer/tests/test_create_form.py
@@ -77,7 +77,8 @@ def _url(url: str):
77
page.get_by_role("combobox").click()
78
page.get_by_label("select").click()
79
page.get_by_role("button", name="Edit Options").click()
80
- page.get_by_role("button").first.click()
+ submit_button = page.locator("button[type='submit']:has(svg)")
81
+ submit_button.click()
82
page.get_by_placeholder("Label").fill("Assuredly")
83
page.get_by_placeholder("Assuredly").click()
84
page.get_by_placeholder("Assuredly").fill("Yes")
0 commit comments