How to run a single test case using mvn robotframework?

允我心安 提交于 2019-12-02 11:57:10

You can assign run a test case by this command

Lets say we have a directory called Tests inside that directory we have Test.robot which contains 5 different test cases "Login" "Register" "Delete User" "Update User" "Random Test"

Tests
   |
   |_ Test.robot

You can use the following command the execute a single test cases

robot Tests/Test.robot -t "Login"

This command will only execute the Login test case

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!