Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

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")


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...