selenium web驱动程序chrome Doesend想要工作



我曾试图学习selenium python,但它说当我运行该文件时,它有错误的预处理,我的chrome版本是(105.0.5195.102(,当我试图找到一个网络驱动程序时,我没有找到相同的网络驱动程序,所以我安装了它编辑之外的其他东西。我已经解压缩了wbe驱动程序,现在代码是

enter code here
from selenium import webdriver
Path = "/home/ammar/Downloads/chromedriver"
driver = webdriver.Chrome(Path)
driver.get("https://techwithtim.net")

这是新输出的

弃用警告:executable_path已弃用,请传入服务对象driver=网络驱动程序。Chrome(Path(

因此,如果它与我的网络驱动程序有关,我找不到与我相同的版本,所以如果有人知道我在哪里可以找到相同的网络驱动,请告诉我

试试这个:

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
options = webdriver.ChromeOptions()
# the detach option is required otherway chrome get closed after a short time
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
driver.get("https://techwithtim.net")

相关内容

  • 没有找到相关文章

最新更新