Selenium Python - Test Framework Integration (pytest)
Given this
What will this test print?
conftest.py fixture:@pytest.fixture
def browser():
return "ChromeDriver"
What will this test print?
def test_driver(browser):
print(browser)
