标签: python python-2.7 unit-testing selenium selenium-webdriver
伙计帮我解决了这个问题..我想使用注释来订购测试用例
import pytest @pytest.mark.run(order=2)
但它不起作用,我使用命令pip install pytest安装 告诉我们如何解决这个问题,或者给我一些替代解决方案
pip install pytest
答案 0 :(得分:1)
您使用的语法不是来自pytest,而是来自插件pytest-ordering,您可以使用pip install pytest-ordering安装
pytest
pip install pytest-ordering