问题描述
我需要无头浏览器进行网络抓取.最近,我尝试了3种不同的无头浏览器( PhantomJS,Firefox,Chrome ).
I need a headless browser for webscraping.Recently i tried 3 different headless browsers(PhantomJS,Firefox,Chrome).
使用 phantomJS 时,会出现一些错误(即):Armv7处理器需要GUI .
然后,我使用 Firefox和geckodriver ,它显示路径错误和连接被拒绝.
then,am using Firefox with geckodriver, it shows errors in the path and connection refused.
使我转到使用chromedriver的 chrome无头浏览器,但是它也显示与Firefox相同的错误.
so that i moved to chrome headless browser with chromedriver,but it also shows same errors as Firefox.
因此,我需要用于Armv7处理器的正确的无头浏览器.任何人都可以提出解决方案或其他进一步方法的建议.
So,I need a correct headless browser for Armv7 processor.Can anyone suggest solution for that or any other way to proceed further.
推荐答案
在类似情况下,安装较低版本的selenium可以解决我的问题.
Installing lower version of selenium fixed my issue in a similar case.
pip install selenium==2.53.5
这篇关于需要Armv7 Linux处理器的无头浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!