Selenium Python - Cross-Browser Testing
Identify the error in this Selenium Python code snippet meant for cross-browser testing:
from selenium import webdriver
driver = webdriver.Chrome
driver.get('https://example.com')
driver.quit()