Double clicking in python selenium
问题 I am using selenium with python. Im able to get the code below to click where I want but I want it to dbl click. Im not very good with the action chains and I know I need that for dbl click. Can anyone help with what I need to change around? user = self.find_element_by_id("selUsers") for option in user.find_elements_by_tag_name("option"): if option.text == "Admin, Ascender": option.click() 回答1: Action chains is the only best option as far i know from selenium.webdriver.common.action_chains