Reputation: 1
I am trying to build a simple splinter application in python but I am getting a Type when calling visit(). Browser apparently returns None. I use python 3.10.6 and splinter 0.18.1.
Note this example is directly taken from https://splinter.readthedocs.io/en/latest/. Other browsers get the same error.
from splinter import Browser
browser = Browser('firefox')
browser.visit('http://google.com')
"TypeError: 'NoneType' object is not callable"
Upvotes: 0
Views: 24