JavaScript
x
5
1
from selenium import webdriver
2
3
browser = webdriver.Firefox(executable_path="/usr/bin/geckodriver")
4
browser.get('http://www.ubuntu.com/')
5
The entire stack trace looks like:
JavaScript
1
12
12
1
Traceback (most recent call last):
2
File "<stdin>", line 1, in <module>
3
File "/usr/local/lib/python3.6/dist-packages/selenium/webdriver/firefox/webdriver.py", line 160, in __init__
4
self.service.start()
5
File "/usr/local/lib/python3.6/dist-packages/selenium/webdriver/common/service.py", line 76, in start
6
stdin=PIPE)
7
File "/usr/lib/python3.6/subprocess.py", line 709, in __init__
8
restore_signals, start_new_session)
9
File "/usr/lib/python3.6/subprocess.py", line 1344, in _execute_child
10
raise child_exception_type(errno_num, err_msg, err_filename)
11
OSError: [Errno 8] Exec format error: 'geckodriver'
12
my path to geckodriver is:
JavaScript
1
2
1
/usr/bin/geckodriver
2
And selenium is in:
JavaScript
1
2
1
selenium in /usr/local/lib/python3.6/dist-packages (3.12.0)
2
Thanks in advance!
Advertisement
Answer
You have most probably installed a version of geckodriver that is meant for a different OS/platform! get the correct version from https://github.com/mozilla/geckodriver/releases and replace the one you have.