-
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? |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
If you want to change the binary location, there's the
binary_location=PATH
arg: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