"Can i execute a specific scenario that is having suppose 5 steps before some specific scenaros in Cucumber?
Suppose i have a feature file that contains 3 scenarios say A,B and C.
I am writing another feature file and there are suppose 5 scenarios M,N,O,P and Q.
Now i want to execute scenario B before N and Q.
Note: Scenario B has multiple steps and i want to execute all the steps befor the execution of N and Q.
The @Before Hooks is applicable to single method and Background scenarios will execute before every senario. Please give some solution."