enterText method
Implementation
Future<void> enterText(
dynamic target,
String text, {
bool pumpFrames = true,
}) async {
var finder = targetToFinder(target);
await tester.enterText(finder, text);
await _pumpFramesIfNeeded(pumpFrames);
await _screenshotIfNeeded();
}