gpt4 book ai didi

python - 使用 Selenium Actionchains 时指定 Actions 之间的等待时间

转载 作者:太空宇宙 更新时间:2023-11-04 06:45:04 24 4
gpt4 key购买 nike

ActionChains 是使用 Selenium 时非常方便的方法。它工作得很好,我唯一缺少的是如何在操作之间插入等待时间。

我将从官方的 google Selenium 文档中获取相同的示例。 https://selenium.googlecode.com/git/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html

menu = driver.find_element_by_css_selector(".nav")
hidden_submenu = driver.find_element_by_css_selector(".nav #submenu1")

ActionChains(driver).move_to_element(menu).click(hidden_submenu).perform()

我正在寻找一种在两个操作之间插入等待时间的方法

ActionChains(driver).move_to_element(menu)**(..wait some seconds)**.click(hidden_submenu).perform()

谢谢!

最佳答案

我试过了,似乎有效

from selenium import webdriver 

action = webdriver.ActionChains(driver)

action.pause(3)

action.perform()

driver.close()

关于python - 使用 Selenium Actionchains 时指定 Actions 之间的等待时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36572190/

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