How to run a single test case using mvn robotframework?

匆匆过客 提交于 2019-12-20 07:34:18

问题


I am trying to run a test case in robot framework using mvn robotframework. But when i do it runs all the testcases in the suite rather than a single testcase. I also tried to user robot testcase -testcase.robot. It is also giving error.

Can anyone help regarding this ?


回答1:


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



来源:https://stackoverflow.com/questions/55850913/how-to-run-a-single-test-case-using-mvn-robotframework

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