Use Cases | Native Flutter Driver | Appium Flutter Integration Driver |
---|---|---|
Writing tests in languages other than Dart | ❌ | ✔️ |
Running integration tests for Flutter apps with embedded webview or native view, or existing native apps with embedded Flutter view | ❌ | ✔️ |
Running tests on multiple devices simultaneously | ❌ | ✔️ |
Running integration tests on device farms that offer Appium support | ❌ | ✔️ |
App interactions beyond Flutter’s contextuality (e.g., sending an OTP from a message application) | ❌ | ✔️ |
The current Appium Flutter Driver is built on top of the flutter_test
SDK, which is deprecated. The potential deprecation (Expand deprecation policy to package:flutter_driver) means this driver may not work with future Flutter updates. It also does not handle all cases, such as permission dialog handling.
This driver is built using Flutter Integration Test.
⭐ Strong Typing & Fluent APIs: Ensures robust and easy-to-use interfaces.
⭐ Element Handling: Automatically waits for elements to attach to the DOM before interacting.
⭐ Seamless Context Switching: No need to switch between contexts, such as Flutter and native; the driver handles it effortlessly.
⭐ Auto Wait for Render Cycles: Automatically waits for frame render cycles, including animations and screen transitions.
⭐ Simplified Powerful Gestures: Supports powerful yet simplified gestures like LongPress, ScrollToElement, DragAndDrop, and DoubleClick.
⭐ Element Chaining: Allows chaining of elements, enabling you to find child elements under a specific parent easily.
appium driver install --source npm appium-flutter-integration-driver
- In your Flutter app's
pubspec.yaml
, add the following dependencies:
Get the latest version from https://pub.dev/packages/appium_flutter_server/install
dev_dependencies:
appium_flutter_server: 0.0.27
-
Create a directory called
integration_test
in the root of your Flutter project. -
Create a file called
appium_test.dart
in theintegration_test
directory. -
Add the following code to the
appium_test.dart
file:import 'package:appium_flutter_server/appium_flutter_server.dart'; import 'package:appium_testing_app/main.dart'; void main() { initializeTest(app: const MyApp()); }
If you are in need to configure certain prerequists before the testing app is loaded, you can try the following code:
import 'package:appium_testing_app/main.dart'; as app; void main() { initializeTest( callback: (WidgetTester tester) async { // Perform any prerequisite steps or intialise any dependencies required by the app // and make sure to pump the app widget using below statement. await tester.pumpWidget(const app.MyApp()); }, ); }
-
Build the Android app:
./gradlew app:assembleDebug -Ptarget=`pwd`/../integration_test/appium.dart
-
Build the iOS app: For Simulator - Debug mode
flutter build ios integration_test/appium.dart --simulator
For Real Device - Release mode
flutter build ipa --release integration_test/appium.dart
Bingo! You are ready to run your tests using Appium Flutter Integration Driver.
Check if your Flutter app is running on the device or emulator.
For Android
1. Run adb command `adb logcat | grep flutter` to check if the Flutter app is running.
2. Open the application in the device or emulator manually.
3. Verify the logs in the console.
06-17 17:02:13.246 32697 32743 I flutter : The Dart VM service is listening on http://127.0.0.1:33339/E2REX61NaiI=/
06-17 17:02:13.584 32697 32735 I flutter : 00:00 +0: appium flutter server
06-17 17:02:14.814 32697 32735 I flutter : shelfRun HTTP service running on port 9000
06-17 17:02:14.814 32697 32735 I flutter : [APPIUM FLUTTER] Appium flutter server is listening on port 9000
06-17 17:02:14.866 32697 32735 I flutter : [APPIUM FLUTTER] New Request [GET] http://127.0.0.1:10000/status
06-17 17:02:14.869 32697 32735 I flutter : [APPIUM FLUTTER] response {message: Flutter driver is ready to accept new connections, appInfo: {appName: appium_testing_app, buildNumber: 1, packageName: com.example.appium_testing_app, version: 1.0.0, buildSignature: F2C7CEC8F907AB830B7802C2178515D1FD4BEBA154E981FB61FFC8EC9A8F8195}}
For iOS Simulator:
xcrun simctl spawn booted log stream | grep flutter
Real Device: Check xcode device logs.
- Open the application in the device or emulator manually.
06-17 17:02:13.246 32697 32743 I flutter : The Dart VM service is listening on http://127.0.0.1:33339/E2REX61NaiI=/
06-17 17:02:13.584 32697 32735 I flutter : 00:00 +0: appium flutter server
06-17 17:02:14.814 32697 32735 I flutter : shelfRun HTTP service running on port 9000
06-17 17:02:14.814 32697 32735 I flutter : [APPIUM FLUTTER] Appium flutter server is listening on port 9000
06-17 17:02:14.866 32697 32735 I flutter : [APPIUM FLUTTER] New Request [GET] http://127.0.0.1:10000/status
06-17
- The driver manages the application under test and the device under test via Appium UiAutomator2/XCUITest drivers.
- Newer Flutter versions expose their accessibility labels to the system's accessibility features. This means some Flutter elements can be found and interacted with using
accessibility_id
in the vanilla Appium UiAutomator2/XCUITest drivers, although some elements require interaction over the Dart VM. - Using native driver command will directly hit the Appium UiAutomator2/XCUITest driver.
For more details, refer to the documentation for each driver:
Capability | Description | Required |
---|---|---|
appium:flutterServerLaunchTimeout | Time in ms to wait for flutter server to be pingable. Default is 5000ms | No |
appium:flutterSystemPort | The number of the port on the host machine used for the Flutter server. By default the first free port from 10000..11000 range is selected. It is recommended to set this value if you are running parallel tests on the same machine. | No |
appium:flutterEnableMockCamera | Mock camera image. This works if the AUT uses image_picker. Make sure the server is started with --allow-insecure=adb_shell for android |
No |
appium:flutterElementWaitTimeout | Time in ms to wait for element to be in viewport, Default is 5000ms | No |
appium:flutterScrollMaxIteration | Max Iteration of scroll as an Integer value, Default value is 15 | No |
appium:flutterScrollDelta | The Scroll Delta as a double value, Default value is 64 | No |
🚨 Important Notice for iOS Testing
semanticsLabel
may not work due to an issue raised with Flutter. For updates and more information, please refer to GitHub issue #151238.
We would like to extend our heartfelt thanks to Sauce Labs for integrating the Appium Flutter Driver with their Real Device Cloud. Their assistance has been invaluable in enabling us to deliver robust and reliable testing solutions for Flutter applications. If you want to try the Flutter Integration Driver on Sauce Labs, check their docs. Thank you, Sauce Labs, for your continuous support.