patrol 0.6.0 patrol: ^0.6.0 copied to clipboard
Simple yet powerful Flutter-native UI testing framework eliminating limitations of flutter_test, integration_test, and flutter_driver.
patrol #
patrol
package builds on top of flutter_driver
to make it easy to
control the native device from Dart. It does this by using Android's
UIAutomator library.
It also provides a new custom finder system to make Flutter widget tests more concise and understandable, and writing them – faster and more fun.
Installation #
$ dart pub add patrol
Accessing native platform features #
// example/integration_test/example_test.dart
import 'package:example/main.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:patrol/patrol.dart';
void main() {
final patrol = Patrol.forTest();
patrolTest(
'counter state is the same after going to Home and going back',
($) async {
await tester.pumpWidgetAndSettle(const MyApp());
await $(FloatingActionButton).tap();
expect($(#counterText).text, '1');
await patrol.pressHome();
await patrol.pressDoubleRecentApps();
expect($(#counterText).text, '1');
await $(FloatingActionButton).tap();
expect($(#counterText).text, '2');
await patrol.openNotifications();
await patrol.pressBack();
},
);
}
Custom finders #
import 'package:example/main.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:patrol/patrol.dart';
void main() {
patrolTest(
'logs in successfully',
($) async {
await $.pumpWidgetAndSettle(const MyApp());
await $(#emailInput).enterText('user@leancode.co');
await $(#passwordInput).enterText('ny4ncat');
// Find widget with text 'Log in' which is a descendant of widget with key
// box1 which is a descendant of a Scaffold widget and tap on it.
await $(Scaffold).$(#box1).$('Log in').tap();
// Selects all Scrollables which have Text descendant
$(Scrollable).containing(Text);
// Selects all Scrollables which have a Button descendant which has a Text descendant
$(Scrollable).containing($(Button).containing(Text));
// Selects all Scrollables which have a Button descendant and a Text descendant
$(Scrollable).containing(Button).containing(Text);
},
);
}