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