Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

selenium - Python 3.5 - "Geckodriver executable needs to be in PATH"

I added geckodriver.exe into PATH as you can see on this image and i restarted my computer after. But the error still show up.

Here's my code :

from selenium import webdriver

driver = webdriver.Firefox()
driver.get('https://stackoverflow.com')

Do you have clues about what I did wrong ?

Question&Answers:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are three ways to resolve this error.

  1. Download the gecko driver and keep it in directory where your python test script is there.
  2. Set the environment variable "webdriver.gecko.driver" with driver path as value. os.environ["webdriver.gecko.driver"]="c:geckodriver.exe"

  3. Pass executable path to the constructor like driver = WebDriver.Firefox("path of executable")


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.7k users

...