Selenium Python - Test Framework Integration (pytest)
Given the following pytest test code, what will be the output when running the test?
import pytest
from selenium import webdriver
@pytest.fixture
def driver():
driver = webdriver.Chrome()
yield driver
driver.quit()
def test_title(driver):
driver.get('https://example.com')
assert 'Example Domain' in driver.title
