Selenium Python - Cross-Browser Testing
Identify the error in the following Firefox configuration code and select the fix:
from selenium.webdriver import Firefox from selenium.webdriver.firefox.options import Options options = Options() options.headless(True) browser = Firefox(options=options) browser.quit()
