为了账号安全,请及时绑定邮箱和手机立即绑定

如何修复 Python 中的 selenium“DevToolsActivePort 文件不存在”

如何修复 Python 中的 selenium“DevToolsActivePort 文件不存在”

慕村9548890 2022-03-09 20:47:10
当我同时使用参数--headless和user-data-dir. 硒引发selenium.common.exceptions.WebDriverException: Message: unknown error: DevToolsActivePort file doesn't exist异常。如果只使用其中一个,那么一切都按需要进行。我试图交换论点并删除其中一些。指定 chromedriver.exe 的完整路径。这些都没有帮助。chromeOptions.add_argument("--disable-dev-shm-using") 没有帮助我。login = "test"chromeOptions = webdriver.ChromeOptions() chromeOptions.add_experimental_option("prefs", {"profile.managed_default_content_settings.images": 2}) chromeOptions.add_argument("--no-sandbox") chromeOptions.add_argument("--disable-setuid-sandbox") chromeOptions.add_argument("--disable-dev-shm-using") chromeOptions.add_argument("--disable-extensions") chromeOptions.add_argument("--disable-gpu") chromeOptions.add_argument("start-maximized") chromeOptions.add_argument("disable-infobars") chromeOptions.add_argument("--headless") chromeOptions.add_argument(r"user-data-dir=.\cookies\\" + login) b = webdriver.Chrome(chrome_options=chromeOptions) b.get("https://google.com/") b.quit() 
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

我通过添加参数来解决它--remote-debugging-port=<port>


chromeOptions = webdriver.ChromeOptions() 

chromeOptions.add_experimental_option("prefs", {"profile.managed_default_content_settings.images": 2}) 

chromeOptions.add_argument("--no-sandbox") 

chromeOptions.add_argument("--disable-setuid-sandbox") 


chromeOptions.add_argument("--remote-debugging-port=9222")  # this


chromeOptions.add_argument("--disable-dev-shm-using") 

chromeOptions.add_argument("--disable-extensions") 

chromeOptions.add_argument("--disable-gpu") 

chromeOptions.add_argument("start-maximized") 

chromeOptions.add_argument("disable-infobars")

chromeOptions.add_argument(r"user-data-dir=.\cookies\\test") 


b = webdriver.Chrome(chrome_options=chromeOptions) 

b.get("https://google.com/") 

b.quit()


查看完整回答
反对 回复 2022-03-09
  • 1 回答
  • 0 关注
  • 186 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信