Sprinter Browser returns None

21 Views Asked by At

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"

0

There are 0 best solutions below