How to execute test runner with multiple tags in Cucumber
Solution 1:
It was due to my wrong understanding of this tags handling.
I thought that I need to join scenarios for execution by and
but it's logical and
so this tags = "@Test213 and @Test214"
executes only scenarios which are annotated by both these tags and there are not any in my suite.
If I want to run scenarios one by one I need to configure it like this tags = "@Test213 or @Test214"