Я использую protractor-cucumber-framework
Вот файл функций
Feature: welcome to protractor cucumber
Scenario Outline: DataTable
Given I am learning
Then I print following table
Examples:
| First | Middle |
| qwerty | xyz |
в файле определения шага, я хотел распечатать данные таблицы .
Given(/^I am learning$/, async () => {
console.log("I am learning");
});
Then(/^I print following table$/, (table: TableDefinition) => {
const tableData = table.rows();
console.log(tableData[0][0]);
});
Bute появляется следующая ошибка
TypeError: table.rows is not a function
at World.(anonymous) (/.../Protr_cucumber/stepDef/Sample_stepDef.ts:9:29)