Selenium Python - Data-Driven Testing
What will happen if you run this test?
import pytest
@pytest.mark.parametrize('text', ['hello', 'world'])
def test_upper(text):
assert text.upper() == text