gpt4 book ai didi

python-2.7 - XPath 和 Selenium 问题

转载 作者:行者123 更新时间:2023-12-03 06:53:17 24 4
gpt4 key购买 nike

我用来单击脚本中的元素的命令是:

mydriver.find_element(By.xpath("/html/body/div[1]/a/img")).click()

脚本的执行返回此错误:

Traceback (most recent call last):
File "click.py", line 12, in <module>
mydriver.find_element(By.xpath("/html/body/div[1]/a/img")).click()
AttributeError: type object 'By' has no attribute 'xpath'

如何解决这个问题?

最佳答案

在 python 中执行此操作的正确方法是:

mydriver.find_element_by_xpath("/html/body/div[1]/a/img").click()

关于python-2.7 - XPath 和 Selenium 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37573147/

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