-
This basic code is still headless, how can I adjust it to see the GUI on a Linux desktop?
|
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Oct 14, 2023
Replies: 2 comments
-
You're looking for Updated code: (The from seleniumbase import Driver
driver = Driver(uc=True, headed=True)
driver.get("https://nowsecure.nl/#relax")
driver.sleep(6)
driver.quit() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
-
Yep, that does the trick, thank you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're looking for
headed=True
:SeleniumBase/seleniumbase/plugins/driver_manager.py
Line 69 in ba7f21a
Updated code: (The
driver
also has thesleep(seconds)
method included)