当前位置:   article > 正文

Python+selenium解决报错:SessionNotCreatedException session not created: No matching capabilities found_caused by: org.openqa.selenium.sessionnotcreatedex

caused by: org.openqa.selenium.sessionnotcreatedexception: session not creat

问题:
报错:selenium.common.exceptions.SessionNotCreatedException: Message: session not created: No matching capabilities found

在这里插入图片描述

解决方法
查看导包是否正确:

如果是webdriver.Chrome,那么导包的一切都要是chrome的
如果是webdriver.Firefox,那么导入的包也都源于firefox的包
出现这个问题是因为由于selenium很多类都很相似,如selenium.webdriver.firefox.options与selenium.webdriver.chrome.options,导致导包的时候容易出错,而代码本身是没有问题的。

问题解析
错误代码如下:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.firefox.options import Options #此处导入的是firefox

url = 'https://www.baidu.com'
options = Options()
options.add_argument('--headless')
browser = webdriver.Chrome(options=options) #调用的是Chrome
browser.get(url=url)
print(browser.page_source[:300])
browser.close()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/168458
推荐阅读
相关标签
  

闽ICP备14008679号