Update docs

This commit is contained in:
Florian Bruhin 2018-09-27 16:35:12 +02:00
parent 718376f154
commit bfa7d6a566
2 changed files with 3 additions and 1 deletions

View File

@ -68,6 +68,8 @@ Changed
patterns instead of globs. patterns instead of globs.
- In passthrough mode, Ctrl + Mousewheel now also gets passed through to the - In passthrough mode, Ctrl + Mousewheel now also gets passed through to the
page instead of zooming. page instead of zooming.
- Editing text in an external editor now simulates a JS "input" event, which
improves compatibility with websites reacting via JS to input.
Fixed Fixed
~~~~~ ~~~~~

View File

@ -147,7 +147,7 @@ class AbstractWebElement(collections.abc.MutableMapping):
bubbles: Whether this event should bubble. bubbles: Whether this event should bubble.
cancelable: Whether this event can be cancelled. cancelable: Whether this event can be cancelled.
composed: Whether the event will trigger listeners outside of a composed: Whether the event will trigger listeners outside of a
shadow root shadow root.
""" """
raise NotImplementedError raise NotImplementedError