Selenium Python - Test Framework Integration (pytest)
Identify the error in this
conftest.py fixture:@pytest.fixture
def browser():
driver = webdriver.Chrome()
yield driver
driver.quit()
print("Driver closed")
