iSeeMultipleTexts function
Example: When I see multiple {'text'} texts
Implementation
Future<void> iSeeMultipleTexts(
WidgetTester tester,
String text,
) async {
expect(find.text(text), findsWidgets);
}
Example: When I see multiple {'text'} texts
Future<void> iSeeMultipleTexts(
WidgetTester tester,
String text,
) async {
expect(find.text(text), findsWidgets);
}