I noticed the tap CLI editor subcommand has an option to add specific steps at the end of the test plan, however I have not been able to get it to work.
I can add use the -o switch to load a .TapPlan just fine, but using -a with several different ways of calling out a step to add has been unsuccessful for me. For example, I’ve tried the following from windows command line :
tap editor -a OpenTap.Plugins.BasicSteps.Delay
tap editor -a 'OpenTap.Plugins.BasicSteps.Delay'
Or the above with double quotes
tap editor -a "Basic Steps \ Delay"
tap editor -o "SomePlan.TapPlan" -a OpenTap.Plugins.BasicSteps.Delay
All give an error saying the step type was not found. Any help is appreciated, thank you.