TapWidgetWithTextStep function

StepDefinitionGeneric<World> TapWidgetWithTextStep()

Taps a widget that contains text.

Examples:

Then I tap the label that contains the text "Logout" Then I tap the button that contains the text "Sign up" Then I tap the widget that contains the text "My User Profile"

Implementation

StepDefinitionGeneric TapWidgetWithTextStep() {
  return then1<String, FlutterWorld>(
    RegExp(
        r'I tap the (?:button|element|label|field|text|widget) that contains the text {string}$'),
    (input1, context) async {
      final finder = find.text(input1);
      await context.world.driver?.scrollIntoView(finder);
      await FlutterDriverUtils.tap(
        context.world.driver,
        finder,
      );
    },
  );
}