复用浏览器报错Message: unknown error: cannot connect to chrome at 127.0.0.1:9222

进行浏览器复用的时候报错如下

selenium.common.exceptions.WebDriverException: Message: unknown error: cannot connect to chrome at 127.0.0.1:9222

from chrome not reachable

在这里插入图片描述
问题:windows指定浏览器端口的时候输入的是命令错误,-remote和-debugging之间多了空格,或者chrome -remote-debugging-port:9222这些命令都可以自动打开浏览器,但是selenium复用浏览器的时候就调用不到127.0.0.1浏览器

chrome -remote -debugging-port=9222

解决方法:去掉-remote和-debugging之间的空格

chrome -remote-debugging-port=9222

你可能感兴趣的:(python,selenium,python,selenium)