Selenium Python - CI/CD Integration
What will be the output of the following Selenium Python code snippet when run on a CI server?
from selenium import webdriver
options = webdriver.FirefoxOptions()
options.add_argument('--headless')
driver = webdriver.Firefox(options=options)
driver.get('https://example.com')
title = driver.title
driver.quit()
print(title)