Selenium Python - Cross-Browser Testing
Given the code below, what will be printed?
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(options=options)
print(driver.capabilities['goog:chromeOptions']['excludeSwitches'])