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