I am currently using Selenium with Python and I'm able to click on the page wherever I want, by using the code below. But I want it to double click. I'm not very good with the action chains and I know I need that for the double click. Can anyone help me with what I need to change the code?
The snippet is:
user = self.find_element_by_id("selUsers")
for option in user.find_elements_by_tag_name("option"):
if option.text == "Admin, Ascender":
option.click()