D.Andy
D.Andy

Reputation: 247

The splinter Browser in Python cannot work

This is the sample code:

from splinter import Browser

b = Browser()

However I got the error as below: enter image description here

Upvotes: 0

Views: 189

Answers (1)

Zach Folwick
Zach Folwick

Reputation: 921

looking at the last line of the error it appears that 'geckodriver' needs to be added to your PATH.

Upvotes: 1

Related Questions