标签:ora dex 找不到 tps strong ext style target 匹配
1. 驱动需要放在python安装目录下
2. 谷歌浏览器驱动有时需要放在D:\Google1\Chrome\Application(谷歌安装目录)目录
报错信息如下:
selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary(找不到谷歌浏览器二进制文件)
原因:一般是由于谷歌浏览器没有安装在默认路径下,
解决:方式有三个,选择其一
1) 重新安装谷歌浏览器在默认路径下
2) 启动谷歌浏览器语句改成:driver=webdriver.Chrome("C:/Program Files (x86)/Google/Chrome/chrome.exe" )#chrome.exe的路径
3) 添加语句:
ChromeOptions options = new ChromeOptions();
options.setBinary("C:/Program Files (x86)/Google/Chrome/chrome.exe");
WebDriver dr = new ChromeDriver(options);
原因:chromedriver和chrome版本不匹配,老版本的chromedriver无法正常启动chrome
解决:打开网址https://chromedriver.storage.googleapis.com/index.html
下载和当前谷歌浏览器适配的驱动版本,Notes.text文档详细记录了浏览器和驱动版本对应
标签:ora dex 找不到 tps strong ext style target 匹配
原文地址:https://www.cnblogs.com/Elaine1/p/10021814.html