Testing Flutter Apps with Flutter Driver

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

Pavitra Kinni
Pavitra KinniSoftware Engineer in Testing - II

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.

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.

 

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.

  • tap() 
  • enterText() 
  • scrollIntoView()

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.

Subscribe to Our Newsletter

More from the engineering frontline.

Dive deep into our research and insights on design, development, and the impact of various trends to businesses.
Insight
Why Legacy Systems Make Business Growth More Expensive: Navigate A Smarter Path to Legacy Modernization
Sep 23, 2026

Why Legacy Systems Make Business Growth More Expensive: Navigate A Smarter Path to Legacy Modernization

Learn how legacy systems make business growth more expensive and how edge-first modernization can remove constraints without replacing the existing system.

Insight
SSO, Audit Logs and RBAC: The Enterprise Features AI Prototyping Tools Do Not Cover | Sarika Gautam
Sep 23, 2026

SSO, Audit Logs and RBAC: The Enterprise Features AI Prototyping Tools Do Not Cover | Sarika Gautam

Why AI-generated prototypes fail enterprise review: the context behind SSO, the cost of skipping audit logs, and how role explosion makes RBAC a product of its own.

Insight
Feature Flags as Technical Debt: The Cleanup Nobody Schedules
Sep 21, 2026

Feature Flags as Technical Debt: The Cleanup Nobody Schedules

This blog explains how unmanaged feature flags create technical debt and how teams can detect, manage, and remove them safely.

Insight
Building AI-First Enterprises: Why System Design Matters More Than AI Adoption
Sep 21, 2026

Building AI-First Enterprises: Why System Design Matters More Than AI Adoption

This blog explores how system design, architecture, and validation shape AI-first enterprises, while examining AI’s impact on software engineering and human decision-making.

Insight
The Product Studio in the AI Era: What Actually Changes | Sarika Gautam
Sep 21, 2026

The Product Studio in the AI Era: What Actually Changes | Sarika Gautam

What changes in product development when AI writes the code: the shift to architecture, the token cost of unplanned builds, and why juniors still matter.

Insight
AI and the Future of Digital Customer Experience: Where Technology Meets Human Creativity
Sep 18, 2026

AI and the Future of Digital Customer Experience: Where Technology Meets Human Creativity

A discussion on how AI, human creativity, research, and cross-functional collaboration are shaping the future of digital customer experience.

Insight
Scaling Down Before Scaling Up: Why Bigger Servers Don’t Fix Bad Architecture
Sep 17, 2026

Scaling Down Before Scaling Up: Why Bigger Servers Don’t Fix Bad Architecture

This blog explores how inefficient backend architecture can cause performance issues even under low traffic, covering practical ways to reduce database load, API latency, and resource usage before scaling infrastructure.

The Right Conversation Can

Save You Six Months.

Book a call