How do I set pass ChromeOptions using Driver(uc=True)? #2482
-
|
How do I set pass This code is to proof that these ChromeOptions are not being passed because website is still loading images. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 21 replies
-
|
Options are passed directly into the For example, there's already an option to block images with
Here's a full list of options available today: |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
Hi, is there any option for multiples downloads without navigator asking? |
Beta Was this translation helpful? Give feedback.
-
|
Hi, how can I open as a safe browser to download any files like .xml? using from seleniumbase import Driver |
Beta Was this translation helpful? Give feedback.
-
|
Is there a way to disable videos when using SeleniumBase with SB in CDP mode? Something like this: |
Beta Was this translation helpful? Give feedback.
-
|
hi in selenium we do this: |
Beta Was this translation helpful? Give feedback.

Options are passed directly into the
Driver()on initialization:SeleniumBase/seleniumbase/plugins/driver_manager.py
Line 65 in 77ee514
For example, there's already an option to block images with
block_images=True:SeleniumBase/seleniumbase/core/browser_launcher.py
Line 814 in 77ee514
cap_stringis only for Selenium Grid use with compatible grids. And the Selenium Grid isn't compatible with UC Mode, which means you can't usecap_stringwith UC Mode either.Here's a full list of options available today: