I'm using Selenium with Python and I'm trying to access a website which is broken if the Brave Shields are up, and in particular if blocking fingerprinting. I'd like to find a way to disable Shields or just the blocking of fingerprinting via Selenium. If there is a command line option to disable Shields by default when opening Brave via command line, I could just add an option to the driver:
options = ChromeOptions()
disable_shields = 'correct command line option for shields down'
options.add_argument(disable-shields)
options.binary_location = "/usr/bin/brave-browser"
driver = Chrome(options=options)
I couldn't find a list of costum command line options for brave-browser, just the chromium ones.
A different approach, instead of the command line option, would also be appreciated.