Error with webbot

For some reason, when I use webbot to open an inside-repl chrome instance, it won’t work. It keeps giving an error.

project: https://replit.com/@DaxCodes/browsertest2#main.py

Code that doesn’t work:

from webbot import Browser
web = Browser()
web.go_to('google.com')

I used pygame as well, but no GUI pops up with any browser of some sort.

Thanks

  • DaxCodes

Other code that doesn’t work as well. (should do the same thing):

from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://seleniumhq.org/')