问题
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