Selenium Python - Cross-Browser Testing
What will be the output of the following code snippet?
from selenium import webdriver
from selenium.webdriver.edge.options import Options
options = Options()
options.add_argument('--headless')
driver = webdriver.Edge(options=options)
print(driver.capabilities['ms:edgeOptions']['args'])