tags in test framework

Solutions on MaxInterview for tags in test framework by the best coders in the world

showing results for - "tags in test framework"
Giulio
29 Nov 2016
1--------------------------------------------------------------------
2
3What is your tag strategy in Cucumber?
4	- I create different testing suites 
5      using different tags.
6	- We can use multiple tags in the same
7      feature file to have the same feature file
8      be part of different testing suites as well.
9
10	- for ex:
11
12	Feature #1:
13		@Smoke @Regression @abc
14
15- We use the "and - or - and not" keywords
16  to include or exclude specific tags from test runtime.
similar questions
html test page example