Displaying 1 result from an estimated 1 matches for "profilessignin".
Did you mean:
profilesignin
2009 Apr 27
2
Cucumber: Setting Dependency among scenarios
...file from @getValidatedProfiles
Given I have the validated profile as validatedProfile
When I call SignIn
Then I should get Signed In successfully
My idea is to make use of hooks as below, and if possible pass the
output of @getValidatedProfiles to the ''Given'' of @profilesSignin. If
that''s not possible, I can make use of a java framework to store and
retrieve the output, but the priority is to make a scenario dependent on
one or more other scenarios.
Before(''@profilesignin'') do
//run the scenario with tag @getValidatedProfiles
end...