Selenium Python - Cross-Browser Testing
What will happen if you run this code?
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--start-maximized')
driver = webdriver.Chrome(options=options)
driver.get('https://example.com')