I am using Robot Framework and I was wondering if it possible to run only particular steps within a test-case. For example, if I want to do a test in which, I just input the username and Submit, will I have to write a different test-case or can I conditionally run the test-case listed below ?
In other words, can Invalid Login(Testcase listed below) take parameters and execute only specific steps. For example, run Input Username and Submit or Run Input Password and Submit or Run both of these and then submit.
*** Test Cases ***
Invalid Login
Open Browser To Login Page
Input Username demo
Input Password check
Submit Credentials
Login Should Have Failed
[Teardown] Close Browser
Thanks!