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 255b255 commit edf56f2Copy full SHA for edf56f2
py/selenium/webdriver/common/actions/action_builder.py
@@ -175,7 +175,7 @@ def clear_actions(self) -> None:
175
--------
176
>>> action_builder = ActionBuilder(driver)
177
>>> keyboard = action_builder.key_input
178
- >>> el = driver.find_element(id: "some_id")
+ >>> el = driver.find_element(By.ID, "some_id")
179
>>> action_builder.click(el).pause(keyboard).pause(keyboard).pause(keyboard).send_keys('keys')
180
>>> action_builder.clear_actions()
181
"""
0 commit comments