Selenium Python - Cross-Browser Testing
What is the expected behavior when running the following Selenium Python code?
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--disable-popup-blocking')
driver = webdriver.Chrome(options=options)
driver.get('https://example.com')