Hello,
I created a parametrize test where testId contains the following text:
<span style="font-weight: bold; color: red; font-size: 2em;">text</span>
pytest-html generated the next report:
Is it an expected behaviour?
Test code:
import pytest
@pytest.mark.parametrize(
"data",
[
'<span style="font-weight: bold; color: red; font-size: 2em;">text</span>',
],
)
def test_unescape(data): print("ha-ha")
Hello,
I created a parametrize test where testId contains the following text:
pytest-html generated the next report:
Is it an expected behaviour?
Test code: