Selenium Python - Test Framework Integration (pytest)
Examine the following pytest fixture code for browser setup and teardown. What is the issue here?
@pytest.fixture
def browser():
driver = webdriver.Chrome()
yield driver
driver.quit()
driver = None