gpt4 book ai didi

python - 双击python selenium

转载 作者:太空狗 更新时间:2023-10-29 22:11:28 27 4
gpt4 key购买 nike

我在 python 中使用 selenium。我能够获取下面的代码以单击我想要的位置,但我希望它可以单击。我不太擅长 Action 链,我知道我需要它来实现 dbl click。任何人都可以帮助我改变周围的环境吗?

user = self.find_element_by_id("selUsers")
for option in user.find_elements_by_tag_name("option"):
if option.text == "Admin, Ascender":
option.click()

最佳答案

据我所知, Action 链是唯一最好的选择

from selenium.webdriver.common.action_chains import ActionChains

driver=self.webdriver
user = self.find_element_by_id("selUsers")
for option in user.find_elements_by_tag_name("option"):
if option.text == "Admin, Ascender":
actionChains = ActionChains(driver)
actionChains.double_click(option).perform()

关于python - 双击python selenium,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17870528/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com