API Testing with Cucumber, The Most Popular BDD Framework
API testing with Cucumber is really innovative way of using BDD style feature file. cucumber-api lets one validate public APIs JSON response in blazingly fast time. Inspired by cucumber-api-steps. Checkout sample to see cucumber-api in action. Installation Add cucumber-api gem to your Gemfile:
1 2 | gem 'cucumber-api' |
Require cucumber-api in your Cucumber’s env.rb:
1 | <span class="pl-k">require</span> <span class="pl-s"><span class="pl-pds">'</span>cucumber-api<span class="pl-pds">'</span></span> |
Configuration Verbose logging: enable …
API Testing with Cucumber, The Most Popular BDD Framework Read More »