Selenium Python - Cross-Browser Testing
What will be the output of the following code snippet?
from selenium.webdriver import Firefox from selenium.webdriver.firefox.options import Options options = Options() options.headless = True browser = Firefox(options=options) print(browser.capabilities['moz:headless']) browser.quit()
