deepin python Message: unknown error: cannot find Chrome binary

deepin python Message: unknown error: cannot find Chrome binary,第1张

deepin python Message: unknown error: cannot find Chrome binary
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
try:
   # browser = webdriver.Chrome('/opt/apps/cn.google.chrome/files/chromedriver')
    s = Service(r"/opt/apps/cn.google.chrome/files/chrome")
    driver = webdriver.Chrome(service=s)
    driver.get('https://www.baidu.com')
except Exception as e:
    print(e)

运行这个代码时,报错,需要去本地找到chrome文件,然后把chromedriver放到该目录下

路径添加进去即可

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5679874.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存