1.火狐驱动geckodriver安装成功,也放在了/urs/bin和/usr/local/bin以及python目录下。但仍旧反复报错。
2.启动浏览器代码
from selenium import webdriver
firefox_Driver=webdriver.Firefox()
发生错误提示如下:
selenium.common.exceptions.WebDriverException: Message: Process unexpectedly closed with status: 1
3.经过浏览多博客,采用无头模式,安装图形化界面,等多种方式均未解决。
参考博客如下:
无头模式https://stackoverflow.com/questions/46809135/webdriver-exceptionprocess-unexpectedly-closed-with-status-1https://stackoverflow.com/questions/46809135/webdriver-exceptionprocess-unexpectedly-closed-with-status-1
https://www.cnpython.com/qa/70680https://www.cnpython.com/qa/706804.搜集资料后发现真正的问题在于,在root模式下运行firefox是不被允许的,所以才无法运行。退出root模式后再进入python运行程序即可解决。参考博客:
firefox - selenium.common.exceptions.WebDriverException: Message: Process unexpectedly closed with status 1 - Stack Overflowhttps://stackoverflow.com/questions/50676895/selenium-common-exceptions-webdriverexception-message-process-unexpectedly-clo?noredirect=1
重新运行后出现新报错:
permissionError:[Error 13] Permission denied: 'geckodriver .log'
检查后发现问题在于非root用户不具有geckodriver权限。
用代码打开管理员权限的文件管理,更改geckodriver权限给非root用户,勾选作为可执行文件
sudo nautilus
问题解决:可以正常驱动浏览器打开百度界面啦~~~~~~
|