Selenium Python - Data-Driven Testing
Consider this pytest test using data providers:
What happens if you add a third tuple (4, 15) to the list?
import pytest
@pytest.mark.parametrize('input,expected', [(2,4), (3,9)])
def test_square(input, expected):
assert input ** 2 == expectedWhat happens if you add a third tuple (4, 15) to the list?
