Skip to main content
Version: 1x

Composing Steps

Framework provides capability to implement complex logic via executeStep world method that allow to call gherkin definitions programmatically

const { When, DataTable } = require('@cucumber/cucumber');

When('I do smth complex', async function() {
await this.executeStep(`I type 'username' to 'Username Input'`);
await this.executeStep(`I type 'password' to 'Password Input'`);
await this.executeStep(`I click 'Login Button'`);
await this.executeStep(`I fill following fields`, new DataTable([
[ 'Order', '123' ],
[ 'Delivery Location', 'New York' ]
]))
});