Selenium Python - Data-Driven Testing
What will be the output of the following pytest test using data providers?
import pytest
@pytest.mark.parametrize('num', [1, 2, 3])
def test_is_positive(num):
assert num > 0