I'm using seleniumbase on a windows environment to run my tests without enabling headless but when I put the code on my raspberry pi and want to run the same tests the driver switches to headless so I can't see what's going on but I don't want to...
I only use option uc=True but the driver.get doesn't appear to me but work whereas in Windows I can see the driver
driver = Driver(uc=True)
driver.get('https://www.google.com/')
I was thinking something like:
I'm not sure where your
Drivercomes from as you haven't posted the full code. Does it supportheadless=Falseas an argument?Also, how do you execute the python script in rpi?