I am new to Robot and am learning to write logic and test cases.
I have a test suite, "mytestsuite.robot", which has a lot of test cases. I have a couple of errors in one of my test cases.
How do I run just that specific test case since I don't want to run the whole test suite again?
File mytestsuite.robot
testcase1
....
....
testcase2
....
....
testcase3
....
....
testcase4
....
....
Say test case 3 failed, and I want to just rerun test case 3.
I tried to use:
pybot mytestsuite.robot -t testcase3
But I get an error.