-
I'm trying to do a webscraper and I have succeeded on windows with Selenium and undetected chromedriver. I then wanted to move it to my raspberry, but undetected chromedriver gives issues. So now I'm trying to find another solution and I now I want to have SB to work on my Raspberry with Debian GNU/Linux 12 (bookworm). And ofcourse I tried to look into the descussions if other had issues with SB on a raspberry. I found this post that was answered from @mdmintz for getting undetected chromedriver to work. I followed the answer https://github.com/seleniumbase/SeleniumBase/discussions/2286 and it looked easy. Download ,chromedriver-linux64.zip, renamed it and copied it to the seleniumbase/drivers folder. What I have now in my seleniumbase/drivers is this: I then just wanted a very basic test code, so I did this and when I run the code nothing happens. What do I miss? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Your example uses the |
Beta Was this translation helpful? Give feedback.
Your example uses the
BaseCase
format (help_docs/syntax_formats.md) which runs withpytest
, instead ofpython
.Add
BaseCase.main(__name__, __file__)
to triggerpytest
when running that file withpython
.