Selenium Python - Test Framework Integration (pytest)
What is wrong with this fixture code?
@pytest.fixture
def browser():
driver = webdriver.Chrome()
yield driver
driver.close()