1、谷歌浏览器驱动下载地址:http://chromedriver.storage.googleapis.com/index.html
2、安装第三方库报错,如下图所示:
错误提示1:Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at
错误提示2:
解决方法:pip版本当前pycharm版本不兼容,对pip版本进行降级或升级,输入python -m pip install pip==20.2.4,如下图所示:
3、执行driver=webdriver.chrome报错,检查以下几点:
(1)是否将存放浏览器驱动文件路径加入到系统环境变量path。
(2)浏览驱器驱动文件版本,是否与浏览器版本一致【getAttriError】。
(3)检查webdriver.Chrome()方法。检查chrome首字母是否为大写,如果首字母小写c,则也可能报错。
4、使用pycharm运行自动化测试脚本,报【selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chrome binary】
解决方法:
web_opt=webdriver.ChromeOptions()
web_opt.binary_locatinotallow=r'D:\test\webdriver\chrome.exe'
driver=webdriver.Chrome()
driver.get("https://www.baidu.com")