Nov 27, 2019
Testing Flutter Apps with Flutter Driver
Flutter Driver is a framework or a package that helps in automation testing of Flutter apps.
Author


Book a call
This article is a quick tutorial on testing Flutter apps with Flutter Driver.
About Flutter Driver?
In simple terms, Flutter Driver is a testing framework for Flutter Apps It can be used to test various UI elements and that helps to write end to end integration tests, while reducing time and effort that needs to be put in to test apps conventionally.
Flutter Driver is easy to setup and very handy to use. Here’s how to set it up on your machine:
Setup for Flutter Driver Extension.
Initial step for configuring Flutter Driver is to add the following lines into pubspec.yaml.
dev_dependencies:
flutter_driver:
sdk: flutter
test: any
Note: These lines must be Indented properly in pubspec.yaml.
After adding the above lines, create one directory and name it something relevant, say test_driver, followed by two test files.
The first file will contain the methods that will help the Flutter Driver extension to call a particular function, and its name could be name.dart.

The second file will contain the actual test scripts, for which a proper name could be name_test.dart, that helps in connecting with the Flutter Driver, run tests and close existing connections.
.png)
The element can be selected by using it's KeyString. The key can be declared for any widget.
There are four keys that can be used: bySemanticlabel, byTooltip, byType and byValueKey.
Here I have mentioned only byValueKey.
.png)
Using Flutter Driver extension, test engineers can Tap, enter text, scroll and drag-drop programmatically.
There is nothing else required. It’s just that easy. Oh, and by the way, Flutter is all about widgets….
So, after writing tests run the following command in the terminal from root-path.
$ flutter drive --target=test_driver/name.dart
After following the above steps, you can see the results in the console as all tests passed!

By using the following methods, a user can perform actions like tap, enter text and scrolling actions.
There are some other libraries which may help in carrying out Unit testing, like Mockito, it must be added using the following lines into pubspec.yaml:
dependencies :
http : <newest_version>
dev_dependencies :
test : <newest_version>
mockito : <newest_version>
That’s it, folks!
For more details about Flutter Driver, click here.
Book a Discovery Call
Subscribe to Our Newsletter
Subscribe to RSS
Press & Media Hub RSS FeedRelated Articles.
More from the engineering frontline.
Dive deep into our research and insights on design, development, and the impact of various trends to businesses.

Jun 19, 2026
We Built a 114-Second AWS-to-Azure Failover. Here’s What We Learned
A practical guide to building a 114-second multi-cloud disaster recovery failover between AWS and Azure — what we built, what broke, and what we learned.

Jun 12, 2026
Cloud-Native and Cloud-Agnostic Are Not Ideologies; They Are Business-Stage Decisions
This blog explains how organizations can balance speed, scalability, and operational flexibility as they grow from startup to enterprise scale.

Jun 8, 2026
Geeklego: The Open-Source Design System Built to Work With AI
Build AI-generated UIs without design drift. Explore Geeklego’s open-source design system, token editor, and AI-powered workflow layer.

May 18, 2026
Your Vibe Code Has No Memory. DESIGN.md Fixes That.
A single Markdown file called DESIGN.md gives your AI agent the design memory it lacks — keeping your UI consistent across every session.

May 14, 2026
Building a Production-Ready Image Cropper in React Native
A practical guide to building a custom gesture-driven image cropper in React Native, with support for both profile and cover photo crops.

Apr 23, 2026
From Manual Testing to AI-Assisted Automation with Playwright Agents
This blog discusses the value of Playwright Agents in automating workflows. It provides a detailed description of setting up the system, as well as a breakdown of the Playwright Agent’s automation process.