Skip to content

Commit

Permalink
webdriver: remove change event from assert_events_equal in test_conte…
Browse files Browse the repository at this point in the history
…nteditable (#17813)

The change event does not fire on contenteditable.
  • Loading branch information
julianrkung authored and andreastt committed Jul 15, 2019
1 parent 4eb1792 commit 09f6396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webdriver/tests/element_clear/clear.py
Expand Up @@ -267,7 +267,7 @@ def test_contenteditable(session, add_event_listeners, tracked_events):
response = element_clear(session, element)
assert_success(response)
assert element.property("innerHTML") == ""
assert_events_equal(session, ["focus", "change", "blur"])
assert_events_equal(session, ["focus", "blur"])
assert_element_has_focus(session.execute_script("return document.body"))


Expand Down

0 comments on commit 09f6396

Please sign in to comment.