我无法在Chrome和Firefox上使用Linux Mint 18.1 Serena上运行/执行python(3.5)selenium(3.4.0)脚本.细节:当我尝试在Chrome或Firefox浏览器的脚本下运行时,我遇到了问题,它在Windows计算机上运行正常,但在Linux Mi...

我无法在Chrome和Firefox上使用Linux Mint 18.1 Serena上运行/执行python(3.5)selenium(3.4.0)脚本.
细节:
当我尝试在Chrome或Firefox浏览器的脚本下运行时,我遇到了问题,它在Windows计算机上运行正常,但在Linux Mint上却出现了一些奇怪的问题.
铬:-
import time
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.google.com/xhtml');
driver.close()
结果:-
Traceback (most recent call last):
File "sample1.py", line 6, in <module>
driver.get('http://www.google.com/xhtml');
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg /selenium/webdriver/remote/webdriver.py", line 261, in get
self.execute(Command.GET, {'url': url})
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg/selenium/webdriver/remote/webdriver.py", line 247, in execute
response = self.command_executor.execute(driver_command, params)
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg/selenium/webdriver/remote/remote_connection.py", line 464, in execute
return self._request(command_info[0], url, body=data)
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg/selenium/webdriver/remote/remote_connection.py", line 488, in _request
resp = self._conn.getresponse()
File "/usr/lib/python3.5/http/client.py", line 1197, in getresponse
response.begin()
File "/usr/lib/python3.5/http/client.py", line 297, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.5/http/client.py", line 266, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response
火狐:-
import time
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://www.google.com/xhtml');
driver.close()
结果:-
Traceback (most recent call last):
File "sample1.py", line 4, in <module>
driver = webdriver.Firefox()
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg/selenium/webdriver/firefox/webdriver.py", line 142, in __init__
self.service.start()
File "/usr/local/lib/python3.5/dist-packages/selenium-3.4.0-py3.5.egg/selenium/webdriver/common/service.py", line 74, in start
stdout=self.log_file, stderr=self.log_file)
File "/usr/lib/python3.5/subprocess.py", line 947, in __init__
restore_signals, start_new_session)
File "/usr/lib/python3.5/subprocess.py", line 1551, in _execute_child
raise child_exception_type(errno_num, err_msg)
OSError: [Errno 8] Exec format error
解决方法:
我通过更改geckodriver的权限并在/usr/local/bin下移动geckodriver解决了问题
chmod +x geckodriver
cp geckodriver /usr/local/bin/
我认为它对于chromedriver同样适用
谢谢大家的帮助
沃梦达教程
本文标题为:无法使用Chrome和Firefox在Linux Mint上运行Selenium Python脚本


基础教程推荐
猜你喜欢
- python 类对象的析构释放代码演示 2022-10-20
- python-使用张量板回调时Keras不输出任何输出,高内存和CPU使用率并且不使用GPU 2023-11-11
- python之Linux基础(十) 2023-09-04
- python使用fork实现守护进程的方法 2023-09-03
- 利用Python将彩色图像转为灰度图像的两种方法 2023-08-04
- Python实现字符串匹配算法代码示例 2023-09-04
- Python中的getattr、__getattr__、__getattribute__、__get__详解 2023-08-04
- conda创建环境、安装包、删除环境步骤详细记录 2022-08-30
- python-Shell脚本的Zip函数 2023-11-10
- 教你使用Python画棵圣诞树完整代码 2023-08-11