tags in cucumber

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

showing results for - "tags in cucumber"
Nolan
21 May 2018
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.
Theo
24 Sep 2019
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.
17      
similar questions
queries leading to this page
tags in cucumber