Search code examples
cucumbercalabashcalabash-android

Load Steps into Console?


Is it possible to load the step definitions I have defined into the calabash-android console?

I would like to be able to use them when navigating the app within the console.

Thanks


Solution

  • No from the console you can not run a single step definition. But you can start execution of a test at a specific line appending parameter to the call to start your test

    :<linenumber>
    

    This will start execution of your feature file from that specific line and it will run from there to the end of the file.

    So while it is not what you are looking for at least it is something.