|
With Selenium I can set path to run which browser I want in python. How can I do that with Seleniumbase? And in undetected mode? |
Answered by
mdmintz
Oct 30, 2023
Replies: 1 comment 8 replies
|
If you want to change the binary location, there's the from seleniumbase import Driver
driver = Driver(binary_location=PATH)The supported browsers are Chrome, Edge, Firefox, and Safari. UC Mode is only for Chrome. However, if you want to use SeleniumBase APIs from SeleniumBase/help_docs/method_summary.md while customizing how you launch the driver, you can use the format that lets you override how you launch your driver: SeleniumBase/help_docs/syntax_formats.md#-9-overriding-the-driver-via-basecase |
8 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to change the binary location, there's the
binary_location=PATHarg:The supported browsers are Chrome, Edge, Firefox, and Safari. UC Mode is only for Chrome.
However, if you want to use SeleniumBase APIs from SeleniumBase/help_docs/method_summary.md while customizing how you launch the driver, you can use the format that lets you override how you launch your driver: SeleniumBase/help_docs/syntax_formats.md#-9-overriding-the-driver-via-basecase