Displaying 1 result from an estimated 1 matches for "getvalidatedprofiles".
2009 Apr 27
2
Cucumber: Setting Dependency among scenarios
...39;'s feature(say
profilesignin.feature) , Is there any option to run the features of
ValidateProfileTest(say validateprofile.feature), get its output and
pass the same as input to profilesignin.feature ''s scenario as below:
    validateprofile.feature
    -----------------------
    @getValidatedProfiles
    Given I have a username and password
    When I call Validate Profile
    Then Profile should validate successfully
    profilesignin.feature
    ---------------------
    @profilesignin
    use output as validatedProfile from @getValidatedProfiles
    Given I have the validated profile as val...