Feature File Execution in some specific order #999
Replies: 3 comments 1 reply
-
|
Mmh, I think I understand partly what you are trying to achieve. NOTES:
|
Beta Was this translation helpful? Give feedback.
-
# — FILE: features/feature_001.feature
Feature: f1
Scenario: s1
Given g1
When w1
Then t1# — FILE: features/feature_002.feature
Feature: f2
Scenario: s2
Given g2
When w2
Then t2No I want my execution to follow: There is no dependency between any features and steps:
I hope now my requirement is clear. |
Beta Was this translation helpful? Give feedback.
-
|
Mmh, the execution of each scenario is independent from the each other scenario (in:
OTHERWISE:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Guys,
I have one scenario to implement
suppose there are 10 features and each features can have more than one scenario .
After complete execution of given step of a scenario , the behave framework should pick the given for other scenrio in the same feature and if no other scenario is there then it should pick another feature given steps .Once all the given steps for all features is completed then it should wait for one condition(say db entry) to be true then it start executing then step for each feature file .
i.e calling one feature grom another running feature and keep calling all the features , once done then wait for a sometime and then come back to first feature and start executing all features again .
is there any way to implement this in behave ?
Beta Was this translation helpful? Give feedback.
All reactions