gpt4 book ai didi

Python chrome 以 “Data;” 和 selenium 打开

转载 作者:行者123 更新时间:2023-12-05 06:53:19 29 4
gpt4 key购买 nike

我正在使用 python selenium 进行网络抓取,但在运行以下代码后,chrome 启动但没有获得我想要的网站,而是显示“数据;”在网址栏中。

谁能帮忙解决这个问题?非常感谢!!

PS:我的chrome是88.chromedriver也是88.chrome和chromedriver的路径不一样,一个在桌面,一个在C://

    import selenium
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import time
import random
option = Options()
option.add_experimental_option('excludeSwitches', ['enable-logging'])
option.add_argument('--remote-debugging-port=9222')
driver =webdriver.Chrome(executable_path='C:/Users/Desktop/chromedriver.exe')
driver.get("https://www.youtube.com")

最佳答案

而不是使用这个

from selenium.webdriver.chrome.options import Options
options = options()

用这个

options = webdriver.ChromeOptions()

我建议您将所有内容放在同一个项目目录中。这是最佳实践。


将 chromedriver 放入同一目录后。这样做:

from os import getcwd
driver = webdriver.Chrome(getcwd() + "\chromedriver.exe", options=options)

另外,尝试关闭旧的 chrome 窗口。

关于Python chrome 以 “Data;” 和 selenium 打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65802774/

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