flutter_gherkin icon indicating copy to clipboard operation
flutter_gherkin copied to clipboard

A Gherkin parsers and runner for Dart and Flutter which is very similar to cucumber

Results 58 flutter_gherkin issues
Sort by recently updated
recently updated
newest added

Given I open the app Then I should see search page And I enter keyword in search input box And I click on search suggestion And I verify the search...

I have a test where the last screen is a `ListView` with a **loading indicator** at the bottom (pagination). In this situation, the `pumpAndSettle` will result in **infinite loop** failing...

Hello @jonsamwell , I am hoping that you can give me ideas on what else should I try. I was trying to run the latest flutter_gherkin version on our project...

I have a project which I migrated to null-safety however it had one dependency which had no null-safety support. The project runs fine with `--no-sound-null-safety` option however trying to run...

If I have multiple feature files and I am running scenarios by specifying the tags. If I do not include the first scenario from any of the feature file then...

Is it possible to 'accept' exceptions? For an action a custom Exception gets thrown, and that makes the step fail, but I want the exception to be thrown... Is it...

Coming from Ruby I got used to this notation `When(/^I do something$/)` which is pure regexp. It's great because $ helps with avoiding similar but-not-really steps to be misused: For...

Expect condition func: Future verifyInvoiceDetailsPageDisplay() async { expect(find.text(Strings.newInvoice), findsOneWidget); } Expect condition failure log: `I/flutter ( 1151): │ 💡 onAfterStep 'Then Verify user sees invoice details page' StepExecutionResult.error I/flutter (...

Note that null safety cannot yet be achived in the flutter stable branch due to flutter_driver and integration_test not being null safe themselves see https://github.com/flutter/flutter/issues/71379 & https://github.com/flutter/flutter/issues/80293

Hi all, I am experiencing a very weird issue. I've pulled the example code from this repo and successfully run the example code. Meanwhile, after copying the example code to...