Selenium Python - Cross-Browser Testing
Identify the error in this code snippet:
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-extensions')
driver = webdriver.Chrome(option=options)