The command to double click the element.
Element.double_click()
py.get('a').double_click() ---or--- # chain a Pylenium command py.get('a').double_click().switch_to.window(index=1)
# Errors, 'double_click' yields Pylenium, not Element py.get('a').double_click().text
None
(Pylenium) The current instance of Pylenium so you can chain commands
Last updated 5 years ago