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 3db6088 commit a3c4deaCopy full SHA for a3c4dea
tests/menus/test_copy_paste_actions.py
@@ -19,13 +19,13 @@ def test_login_form_copy_paste(driver: Firefox):
19
20
# get the field and send text
21
password_field = login_fill.get_element(
22
- "login-input-field", labels=["current-password"]
+ "input-field", labels=["current-password"]
23
)
24
password_field.send_keys(random_text)
25
logging.info(f"Sent the text {random_text} to the textarea.")
26
27
# triple click and copy text
28
- login_fill.triple_click("login-input-field", labels=["current-password"])
+ login_fill.triple_click("input-field", labels=["current-password"])
29
login_fill.context_click(password_field)
30
context_menu.click_and_hide_menu("context-menu-copy")
31
0 commit comments