Rencently I changed my web-browser to Brave, but I was working with chromedriver to automating some tasks
I've read some and I found this post says that the version of ChromeDriver and Brave have to match, but I don't find driver to my current version only for ChromeDriver 80.0.3987.106.
This is my Brave info: Versión 1.4.96 Chromium: 80.0.3987.132 (Official Build) (64-bits).
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
option = Options()
option.binary_location = '/usr/bin/brave-browser '
driver_path = '/home/usr_1/Downloads/ML/chromedriver'
driver = webdriver.Chrome(options = option, executable_path = driver_path)
driver.get('https://pypi.org/')