-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
⚡ enhancementRequest for new functionalityRequest for new functionalitygood first issueGood for newcomersGood for newcomers
Description
We are using frank-cucumber to run tests against an iOS app. As this app is heavily animated we need to pause after each step to ensure the animations are finished. However there are a couple of steps where we do not want to pause. We have tried the AfterStep hook however we have a significant issue with it.
AfterStep do |scenario|
...
end
The issue is that it does not appear to be passed the text of the step. This makes it impossible to tell what step was being executed. It seems strange to us that an AfterStep hook would be created without being passed the step that was executed. Could we please have a version like this:
AfterStep do |scenario, step|
...
end
Metadata
Metadata
Assignees
Labels
⚡ enhancementRequest for new functionalityRequest for new functionalitygood first issueGood for newcomersGood for newcomers