I am building an analysis bot for an io game called diep.io. I am attempting to open diep.io in Ubuntu, using Python. Using Selenium to open Firefox, but I have the same problem with Chrome as well.
The code:
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://diep.io')
input() # to prevent auto-closure
It seems really simple so I don't get what's going on. When I open the browser manually and navigate to diep.io it works normally, but when I open it with Selenium it runs very slowly, and doesn't show the 'enter your name here' box.
To be clear, I have geckodriver installed correctly, and I'm pretty certain I have the most current version of Python, Selenium, and Firefox. Other webpages work well enough, though they are kinda slow as well.
I can show screenshots or log files if it's needed to diagnose the issue. Any help is appreciated. Thanks.