-
|
Hello, I've seen this: #4026 and trying it on my Raspberry Pi 5 running Debian. My code is the following: from seleniumbase import sb_cdp
url = "https://www.autoscout24.ch/fr/d/mazda-mx-5-18i-16v-20th-anniversary-12851609"
sb = sb_cdp.Chrome(url)
sb.solve_captcha()
sb.assert_element("h1.chakra-text", 15)
sb.save_screenshot("screen.png")
sb.driver.stop()I've installed chromium using When I run my SB script I get the following error: What step have I missed? Some help would be greatly appreciated. :) |
Beta Was this translation helpful? Give feedback.
Answered by
nyg
Nov 8, 2025
Replies: 1 comment
-
|
Ok, looks like I was missing xvfb. I installed it with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nyg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, looks like I was missing xvfb. I installed it with
apt install xvfb. And… it works!