Selenium Python - Test Framework Integration (pytest)
Given this fixture and test code, what will be the output when the test runs?
import pytest
from selenium import webdriver
@pytest.fixture
def browser():
driver = webdriver.Chrome()
yield driver
driver.quit()
def test_title(browser):
browser.get('https://example.com')
print(browser.title)