Öncelikle chrome kullanmanızı tavsiye etmiyorum.Firefox ile çalışın. önce bunuu deneyin

profile = webdriver.FirefoxProfile('C:/Users/USERNAME/AppData/Roaming/Mozilla/Firefox/Profiles/xxxxx.default-release') # dosya yolunu buraya kopyalayabilirsiniz
profile.set_preference("general.useragent.override","tarayıcınınzın User-Agent ini buraya yazın")
tarayıcı = webdriver.Firefox(firefox_profile=profile)
olmadı bunu deneyin

from selenium.webdriver.common.desired_capabilities import DesiredCapabilities

profile = webdriver.FirefoxProfile('C:/Users/USERNAME/AppData/Roaming/Mozilla/Firefox/Profiles/xxxxx.default-release') # dosya yolunu buraya kopyalayabilirsiniz
profile.set_preference("dom.webdriver.enabled", False)
profile.set_preference('useAutomationExtension', False)
profile.update_preferences()
tarayıcı = webdriver.Firefox(firefox_profile=profile)