我想在安装了raspbian lite的raspberry pi 3 b +上使用硒,以刷新浏览器页面。但是,即使安装了最新版本的firefox-esr,selenium,python3和geckodriver,也会收到“无法找到匹配的功能集”错误。
我尝试下载所有类型的geckodriver版本,也包括python版本,但现在我陷入了硒> 3.11,firefox-esr 60.0,geckodriver 26.0(我也将geckodriver复制到usr / bin)和python3的最新版本中> 3.14-根据此站点,它应该可以正常工作?? https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html
try
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("localhost:3000")
driver.refresh()
except Error as err:
print(err)
虽然我尝试了不同的geckodriver版本,但除了最近的错误之外,还遇到了“ [errno 8] exec格式错误”错误-“无法找到匹配的功能集”
令我烦恼的一件事是,有时geckodriver可以通过armhf支持下载,但有时只有linux 32 bit或linux 64 bit选项...我认为raspberry pi 3需要对armlv7体系结构的支持?