gpt4 book ai didi

python - 使用 selenium webdriver 和 python 打开浏览器时出错

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

这是我的代码

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Chrome
driver.get("http://www.python.org")

我遇到了错误

Traceback (most recent call last):
File "E:/codes/python/script.py", line 5, in <module>
driver.get("http://www.python.org")
TypeError: get() missing 1 required positional argument: 'url'

我引用了文档,但那里的信息不多

最佳答案

webdriver.Chrome() 是构造函数,不是字段。应该是

driver = webdriver.Chrome()

或者

driver = webdriver.Chrome('/path/to/chromedriver')

关于python - 使用 selenium webdriver 和 python 打开浏览器时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34963006/

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