Python+Appium运行Webview错误提示Failed to start Chromedriver session: A new session could not be created....

原文链接: http://www.cnblogs.com/mimkmimk789/p/10565074.html

异常提示:

Failed to start Chromedriver session: A new session could not be created. Details: session not created: Chrome version must be between 70 and 73
(Driver info: chromedriver=2.45.615291 (ec3682e3c9061c10f26ea9e5cdcf3c53f3f74387),platform=Windows NT 10.0.17134 x86_64)

解决方法:

chromedriver版本与你的chrome版本不匹配,需下载对应版本的chromedriver,我下载的是红框Chrome/44.0.2403.147-----下载的版本v2.18

然后把路径加在代码里,不用覆盖之前的chromedrive,会自动运行你写的路径

 

 

chrome与driver对应关系(转):https://blog.csdn.net/huilan_same/article/details/51896672

驱动的下载地址: 
http://chromedriver.storage.googleapis.com/index.html

64位的可以兼容32位,直接下32位的

 

 

转载于:https://www.cnblogs.com/mimkmimk789/p/10565074.html

你可能感兴趣的:(Python+Appium运行Webview错误提示Failed to start Chromedriver session: A new session could not be created....)