Selenium Python - Test Framework Integration (pytest)
What will be the output when running this parameterized test snippet?
import pytest
@pytest.mark.parametrize('num, expected', [(1, 2), (2, 3), (3, 4)])
def test_increment(num, expected):
assert num + 1 == expected