0

我在 docker 环境中遇到错误: selenium.common.exceptions.SessionNotCreatedException: Message: Unable to find a matching set of capabilities.

这是我的配置:

Python 3.9.0
selenium==3.141.0
webdriver-manager==3.2.2
pymongo==3.11.0
Mozilla Firefox 78.4.0esr
geckodriver 0.27.0
location for geckodriver:'usr/loca/bin'

我的测试示例代码:

    from selenium import `webdriver` 
    from selenium.webdriver import FirefoxOptions
    opts = FirefoxOptions() 
    opts.add_argument("--headless") 
    browser = webdriver.Firefox(options=opts) 
    browser.get('https://stackoverflow.com')
4

1 回答 1

0

我花了一个小时将 geckodriver 降级到 0.26.0 解决了这个问题最新版本可能存在问题,我对我的设置和/或确认这一点的能力不够自信。

于 2020-11-01T17:26:59.833 回答