Selenium Python - Cross-Browser Testing
Identify the error in this code snippet:
from selenium.webdriver import Firefox from selenium.webdriver.firefox.options import Options options = Options() options.headless = True driver = Firefox(options=options, firefox_profile='myprofile')
