We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a528ed8 commit 2eacba6Copy full SHA for 2eacba6
README.md
@@ -99,8 +99,8 @@ It's useful to use the powers of `pytest` framework to handle situations where t
99
@pytest.mark.parametrize(
100
(""), [
101
pytest.param(id="default"),
102
- pytest.param(id="firefox", marks=pytest.mark.FORCE_BROWSER("edge")),
103
- pytest.param(id="firefox", marks=pytest.mark.FORCE_BROWSER("chrome"))
+ pytest.param(id="edge", marks=pytest.mark.FORCE_BROWSER("edge")),
+ pytest.param(id="chrome", marks=pytest.mark.FORCE_BROWSER("chrome"))
104
]
105
)
106
def test_successfully_run_with_edge_chrome_and_default_config(...):
0 commit comments