运行python脚本报错:selenium.common.exceptions.SessionNotCreatedException: Message: session not created 原因:ChromeDriver版本与浏览器版本不匹配. 解决方法:重新下载适配的ChromeDriver. ChromeDriver下载路径:https://registry.npmmirror.com/binary.html?path=chromedriver/ 1.选择适配的版本进行下载 …
之前遇到一个问题,在Pycharm或IPython之类的IDE上运行脚本正常,但是直接运行或cmd命令行运行的时候报了模块未能找到的错误--ImportError: No Module named .... 这是啥情况? Python在启动解释器(Interpreter)的时候不光会导入环境变量中sys.path发现的模块,还会导入当前工作目录下的模块.当你在IDE中启动解释器时,当前的工作目录就是项目目录,能顺利调用同项目中的模块:但是当你通过命令行启动时,当前工作目录为你启动解释器时所在的目…