testing - Can we run tests in robot framework with comma separated tags? -


i have tagged test cases feature name.

i have tags like, rest-apis, ui-tests, mysql-tests.

i have enabled jenkins job such can select tags using checkboxes.

can run tests below command?

pybot -l trace -i rest-apis,ui-tests /tests/test01.txt

will work?

comma can not used separator tags on command line. 2 options have are:

  • repeating -i option: -i rest-apis -i ui-tests
  • using or operator: -i rest-apisorui-tests

on second option, not there no space , or has upper case. note "tags free text, normalized converted lowercase , spaces removed".


Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -