浏览器问题=浏览器('firefox')我的代码的一部分
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了浏览器问题=浏览器('firefox')我的代码的一部分相关的知识,希望对你有一定的参考价值。
我在我的python中运行我所有模块的更新版本。我正在使用conda-forge和spyder 3.7。
我只是试图使用一些基本代码打开一个网页,我被困在那里。
我在网站的任何地方都有搜索者,但我不确定我应该做什么,因为我对此很新。
我已经更新了我正在使用的模块,并在每次更新后继续,但它无济于事。
这是我的代码:
from splinter import Browser
browser = Browser('firefox')
browser.visit('https://google.com')
以前写成:
from splinter import Browser
browser = Browser()
browser.visit('https://google.com')
两者都有同样的问题。
这是错误:
Traceback (most recent call last):
File "<ipython-input-12-71643798329a>", line 2, in <module>
browser = Browser('firefox')
File "build/bdist.macosx-10.5-x86_64/egg/splinter/browser.py", line 53, in Browser
return driver(*args, **kwargs)
File "build/bdist.macosx-10.5-x86_64/egg/splinter/driver/webdriver/firefox.py", line 33, in __init__
self.driver = Firefox(firefox_profile)
File "C:UserslkerzabiAppDataLocalContinuumanaconda3libsite-packagesseleniumwebdriverfirefoxwebdriver.py", line 174, in __init__
keep_alive=True)
File "C:UserslkerzabiAppDataLocalContinuumanaconda3libsite-packagesseleniumwebdriver
emotewebdriver.py", line 157, in __init__
self.start_session(capabilities, browser_profile)
File "C:UserslkerzabiAppDataLocalContinuumanaconda3libsite-packagesseleniumwebdriver
emotewebdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "C:UserslkerzabiAppDataLocalContinuumanaconda3libsite-packagesseleniumwebdriver
emotewebdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "C:UserslkerzabiAppDataLocalContinuumanaconda3libsite-packagesseleniumwebdriver
emoteerrorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
SessionNotCreatedException: Unable to find a matching set of capabilities
我希望能够打开一个网页,但它只是给了我这个错误。
答案
你从Github Selenium 3.4.0 Unable to find matching capabilities检查了这个问题吗?
特别是那两个答案:
好像你遇到了同样的问题
以上是关于浏览器问题=浏览器('firefox')我的代码的一部分的主要内容,如果未能解决你的问题,请参考以下文章
python3+ selenium3+ Firefox最新版,成功启动了浏览器,但是启动后就不接着向下执行了!
win10 64位的系统、Firefox24.0版本,loadrunner11录制脚本时,打开浏览器提示couldn't load XPCOM
为啥这个@font-face 代码在 Firefox 3.6 中不起作用?