Some things that come in handy when making Robot Framework test:
Tags
RF supports tags. Add a line [Tags] tag1 tag2:
*** Test cases ***
Scenario: Clicking the submit button hides it
Given i am logged in
and i am on an article
When i simulate clicking the comment submit button
Then the submit button has class disabled
Scenario: Submitting a comment displays it in the page
[Tags]
↧