gpt4 book ai didi

Python/Selenium - Chrome Web 驱动程序,单击操作

转载 作者:太空宇宙 更新时间:2023-11-03 15:23:57 25 4
gpt4 key购买 nike

我在使用 Selenium 和 Python 中的 Chrome Web 驱动程序编写点击操作时遇到问题。我花了一些时间在谷歌上搜索,发现我必须使用另一个 Selenium 进程才能在谷歌浏览器中点击,这对我来说没有意义(调用 webdrive.Chrome 时不是吗?) .尽管我找不到任何其他方法来进行点击,无论是在线还是通过 seleniums 模块。

这就是我所拥有的,我们将不胜感激!谢谢!

编辑:所以我在 Selenium 中找到了 ActionChains 模块,似乎也无法让它工作。更新了我的代码,有点,仍然卡住了。 ChromeDriver 真的不支持点击吗?

import selenium
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time

chromeOps = webdriver.ChromeOptions()
chromeOps._binary_location = "C:\\Applications\\Browser\\Chrome.exe"
chromeOps._arguments = ["--enable-internal-flash"]

browser = webdriver.Chrome("C:\\Applications\\Browser\\chromedriver.exe", port=4445, chrome_options=chromeOps)
time.sleep(3)

browser.get("http://example.com")

##selenium.selenium("127.0.0.1", 4445,'*Chrome.exe', 'https://example.com').click("//a[contains(@href,'http://example.com/link')]")

webdriver.ActionChains(browser).click(on_element='//a[contains(@href,"http://example.com/link")]')

最佳答案

我讨厌这样简单的事情就摆在你面前。

clickme = browser.find_element_by_xpath('//a[contains(@href,"http://example.com/link")]')
clickme.click()

关于Python/Selenium - Chrome Web 驱动程序,单击操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10078746/

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