Forum Discussion

asashour's avatar
asashour
New Contributor
4 years ago

Run scenarios programatically

I was thinking to use Cucumber in the main program logic (not in test), so that the logic is written as "scenario" and is separate from the steps implementation. This has the value that the logic would be easier to be understood by non-technical members, and can be easily changed.

 

However, I am sure if if Cucumber supports this currently.

 

Appreciate your feedback, thanks.

3 Replies

    • asashour's avatar
      asashour
      New Contributor

      No, I am directly using Cucumber Open as maven dependency.

       

      I am not familiar with Cucumber Studio, does it offer the needed functionality?

      • Wamboo's avatar
        Wamboo
        Community Hero

        No, it doesn't. In this software, the application (test) code must be written after mentioning the indicated step, that is

        BDD
        (content of the step that will be logged in) {
             the code of the application being executed
        }

         

        but there's an API input, so what you're talking about can be programmed by yourself.