stack_wallet/integration_test/bots/send_view_bot.dart
2022-08-26 16:11:35 +08:00

22 lines
600 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:stackwallet/pages/wallet_view/send_view.dart';
class SendViewBot {
final WidgetTester tester;
const SendViewBot(this.tester);
Future<void> ensureVisible() async {
await tester.ensureVisible(find.byType(SendView));
}
//
// Future<void> tapX() async {
// await tester.tap(find.byKey(Key("cancelTransactionSearchAppBarButton")));
// await tester.pumpAndSettle();
// }
//
// Future<void> tapCancel() async {
// await tester.tap(find.byType(SimpleButton));
// await tester.pumpAndSettle();
// }
}