jonsamwell / flutter_gherkin

A Gherkin parsers and runner for Dart and Flutter which is very similar to cucumber
MIT License
206 stars 113 forks source link

help to use data table for flutter gherkin testing #281

Open AliKarimiENT opened 1 year ago

AliKarimiENT commented 1 year ago

Hello I wanna write a scenario which contains information like this and I don't know how to implement it. Could you please help me with this🙏 When user creates a customer with following data by sending 'Create Customer Command' | FirstName | LastName | Email | PhoneNumber | DateOfBirth | BankAccountNumber | | John | Doe | john@doe.com | +989121234567 | 01-JAN-2000 | IR000000000000001 | Then user can lookup all customers and filter by below properties and get "1" records | FirstName | LastName | Email | PhoneNumber | DateOfBirth | BankAccountNumber | | John | Doe | john@doe.com | +989121234567 | 01-JAN-2000 | IR000000000000001 |

AliKarimiENT commented 1 year ago

Actually the implemented codes for gherkins are few and I couldn't find anything for this.

DiegoVega19 commented 9 months ago

Did you resolve your issue? I want to implement something like your example but I can't