--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
*** Keywords ***
First Keyword
[Tags] keyword_1
Log Keyword1
Second Keyword
[Tags] keyword_2
Log Keyword2
*** Test Cases ***
Test Case 1
First Keyword
Test Case 2
Second Keyword
| Tags: | keyword_1 |
|---|
Adds given
tagsfor the current test or all tests in a suite.When this keyword is used inside a test case, that test gets the specified tags and other tests are not affected.
If this keyword is used in a suite setup, all test cases in that suite, recursively, gets the given tags. It is a failure to use this keyword in a suite teardown.
The current tags are available as a built-in variable
@{TEST TAGS}.See Remove Tags if you want to remove certain tags and Fail if you want to fail the test case after setting and/or removing tags.