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 browser():
driver = webdriver.Chrome()
yield driver
driver.quit()
def test_google_title(browser):
browser.get('https://www.google.com')
assert 'Google' in browser.title