tags strategy

Solutions on MaxInterview for tags strategy by the best coders in the world

showing results for - "tags strategy"
Francesco
04 Nov 2017
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.