Skip to content

Commit a3c4dea

Browse files
committed
fix failing test
1 parent 3db6088 commit a3c4dea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/menus/test_copy_paste_actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ def test_login_form_copy_paste(driver: Firefox):
1919

2020
# get the field and send text
2121
password_field = login_fill.get_element(
22-
"login-input-field", labels=["current-password"]
22+
"input-field", labels=["current-password"]
2323
)
2424
password_field.send_keys(random_text)
2525
logging.info(f"Sent the text {random_text} to the textarea.")
2626

2727
# triple click and copy text
28-
login_fill.triple_click("login-input-field", labels=["current-password"])
28+
login_fill.triple_click("input-field", labels=["current-password"])
2929
login_fill.context_click(password_field)
3030
context_menu.click_and_hide_menu("context-menu-copy")
3131

0 commit comments

Comments
 (0)