You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is going to fail if selenium is not installed, which will lead to this misleading error message in Browser function:
ifdriverisNone:
raiseDriverNotFoundError(f"Driver for {driver_name} was not found.")
This message seems to be related to the driver executable itself (like geckodriver, chromedriver etc.), not for missing selenium (the concepts of a splinter driver and a selenium driver mix here).
The text was updated successfully, but these errors were encountered:
I have a virtualenv with
splinter
installed and tried to run this code:Then, this error happened:
But
geckodriver
was in my$PATH
, so the driver exists.By inspecting splinter code I found this
try
/except
:This is going to fail if
selenium
is not installed, which will lead to this misleading error message inBrowser
function:This message seems to be related to the driver executable itself (like
geckodriver
,chromedriver
etc.), not for missingselenium
(the concepts of a splinter driver and a selenium driver mix here).The text was updated successfully, but these errors were encountered: