testsigma
Automating Flutter Apps with Appium Flutter Driver

Automating Flutter Apps with Appium Flutter Driver using Appium Java Client

In today’s world, mobile applications are essential for any business to thrive, and almost all developed products offer web and mobile support. This has made mobile application testing an integral part of the QA life cycle, and adding to it. The onus is on the test automation engineers to develop an E2E automation suite for mobile application testing.

In this blog, I will explain how test automation engineers can start using Appium to automate mobile applications developed using Flutter.

“Appium is a well-known open-source mobile automation framework through which we can automate Android and iOS mobile applications.”

About Flutter: 

  • An open-source UI development framework created by Google
  • Using Flutter, it is now possible for developers to develop cross-platform applications for Android, iOS, Linux, macOS, Windows, Google Fuchsia, and the web from a single codebase.
  • Flutter apps are written in Dart programming language and run on Dart virtual machines.

How can we Automate Flutter Apps?

Flutter framework, by default, comes up with flutter_driver. But using flutter_driver for UI automation has its limitations, and one of the main limitations is that we can write automation tests only in the Dart programming language. This can be quite tedious for test automation engineers without exposure to the Dart programming language.

Appium Flutter Driver:

The Appium developer community has created a new driver, appium_flutter_driver.This has enabled test automation engineers to automate flutter-based apps just like how they would automate android and iOS mobile apps. 

Appium Set Up and Walkthrough:

I assume you have already set up Appium on your machine. 

Installing Appium Flutter Driver:

  • If you are using Appium 2, use the command “appium driver install flutter” to install appium-flutter-driver.

 Flutter Finder Library:

The Appium developer community has also developed a flutter finder library through which we can interact with flutter-based elements. Below are the few locator strategies available in the flutter finder library.

  • bySemanticslabel
  • byValuekey
  • byType
  • ancestor
  • byTooltip
  • descendant
  • pageBack
  • getRenderTree
  • text

“You can also go through common finders class documentation to understand more about the locator strategies”

How to Generate the Jar for Flutter Finder Library:

  • Pull the latest from the repo: here to your system.
  • Go to the respective folder where the repo is placed and from the terminal, run the command: “gradle clean build”
  • Once the build is over, inside the build directory of the project, i.e., “build/libs/appium-flutter-finder-0.0.6.jar”, you can find the jar.
  • You can add this jar to your automation project.

How to Inspect Elements in the Flutter App?

“Before trying to identify/inspect elements in the flutter app, request you to quickly go through the Introduction to widgets section in the flutter documentation to get an idea of how the UI is basically built out of Widgets.”

Using Flutter Inspector, one can inspect the widgets and try to identify the elements, but it might not be as easy compared to inspecting elements using Appium Inspector. So here is what you can do: take help from the developers to get all the required locators.

Let’s now try to automate the login flow in a flutter app. 

Sample App:

  • Provider Shopper 
  • You can also download more sample flutter apps from here

Pre-Requisites:

After downloading a sample flutter app, we need to do certain prerequisites so that the flutter app becomes feasible to automate.

Browserstack has elaborately mentioned the prerequisites here. You can go through this to complete the pre-requisite and to build the app.

IDE:

  • IntelliJ IDEA

Programming Language:

  • Java: Open JDK 17.0.3v

Mobile Device:

  • Android Emulator

Have added the following dependencies in my pom.xml file

  • Appium java client: 8.1.1
  • TestNG: 7.5
  • Kotlin standard library for JVM: 1.3.40
  • Kotlin multiplatform serialization runtime library: 0.14.0
  • And do not forget to add the flutter finder jar to your project.
public class FlutterAndroidShopper { private AndroidDriver driver; private FlutterFinder find; @BeforeTest public void setUp() throws Exception { DesiredCapabilities caps = new DesiredCapabilities(); caps.setCapability(MobileCapabilityType.PLATFORM_NAME, “android”); caps.setCapability(MobileCapabilityType.AUTOMATION_NAME, “Flutter”); caps.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, “3000”); caps.setCapability(MobileCapabilityType.DEVICE_NAME, “emulator-5554”); caps.setCapability(MobileCapabilityType.APP, “”); //mention your app path here driver = new AndroidDriver(new URL(“http://localhost:4723/wd/hub”), caps); find = new FlutterFinder(driver); } @Test public void login(){ find.bySemanticsLabel(“Username”).sendKeys(“username”); find.bySemanticsLabel(“Password”).sendKeys(“Password”); find.text(“ENTER”).click(); Assert.assertEquals(find.text(“Catalog”).getText(),”Catalog”); } @AfterTest public void tearDown(){ if(driver!=null){ driver.quit(); } } }

As you can see from the above code, I have created a new object for FlutterFinder class, and with that, I can interact with the elements in the flutter app.

Similarly, you can also run automation on your iOS device as well.

An important point to be considered here is:

For running the automation in Android and iOS mobile applications, AUTOMATION_NAME should be “Flutter”

Can we launch Flutter App in Appium Inspector?

We cannot launch the flutter app in Appium inspector with the automation name: “Flutter,”

But if the app has both native and flutter-based components:

  • We can launch the app in Appium inspector by mentioning the automation name “UIAutomator2” for android and “XCUITest” for iOS.
  • Only native elements can be found in the inspector; we will not be able to find flutter-based elements.

Switching between Native App and Flutter App context:

If the app has both native and flutter-based components, here is what you need to do:

  • Start the Appium session with automation_name as “Flutter”
  • driver.getContextHandles() => will give “NATIVE_APP” and “FLUTTER”
  • You can then set the context accordingly using driver.context(“NATIVE_APP”) and interact with the respective elements.
public class FlutterAndroidShopper { private AndroidDriver driver; private FlutterFinder find; @BeforeTest public void setUp() throws Exception { DesiredCapabilities caps = new DesiredCapabilities(); caps.setCapability(MobileCapabilityType.PLATFORM_NAME, “android”); caps.setCapability(MobileCapabilityType.AUTOMATION_NAME, “Flutter”); caps.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, “3000”); caps.setCapability(MobileCapabilityType.DEVICE_NAME, “emulator-5554”); caps.setCapability(MobileCapabilityType.APP, “”); //mention your app path here driver = new AndroidDriver(new URL(“http://localhost:4723/wd/hub”), caps); find = new FlutterFinder(driver); } @Test public void login(){ switchContext(“NATIVE_APP”); RemoteWebElement username = (RemoteWebElement) driver.findElement(By.xpath(“/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText[1]”)); username.click(); username.sendKeys(“Username”); switchContext(“FLUTTER”); find.bySemanticsLabel(“Password”).sendKeys(“Password”); find.text(“ENTER”).click(); Assert.assertEquals(find.text(“Catalog”).getText(),”Catalog”); } public void switchContext(String context) { Set contexts = driver.getContextHandles(); for (String appContext : contexts) { if (appContext.contains(context)) { driver.context(appContext); break; } } } @AfterTest public void tearDown(){ if(driver!=null){ driver.quit(); } } }

Conclusion:

Thus, by using the Appium flutter driver and flutter finder library, you can now start writing automation tests using the Appium Java client for flutter apps and also for flutter+native apps.  Despite the support and the capabilities offered, the Appium flutter driver is still in the early stages of development and due to this, there might be issues and limitations in using the same for flutter app automation.  

So before adopting the appium flutter driver, do thorough research, understand the pros and cons, and then make the call! Happy testing.

Frequently Asked Questions

What is Appium Flutter Driver?


Appium Flutter Driver is a testing tool that allows you to automate Flutter apps using Appium. It helps you interact with the UI elements of your Flutter app, such as buttons, text fields, and dropdowns, and perform various actions on them, such as clicking, typing, and selecting. With Appium Flutter Driver, you can write automated tests for your Flutter app and run them on real devices or emulators.

How can I automate my Flutter app using Appium Flutter Driver?


You need to follow a few steps to automate your Flutter app using Appium Flutter Driver. First, you need to set up your environment by installing the required software, such as Flutter, Android Studio, and Appium. Then, you need to create a Flutter project and add the necessary dependencies for Appium Flutter Driver. After that, you can write your automated tests using your favorite programming language and run them using Appium. To simplify this process, you can use a test automation platform like Testsigma that provides a user-friendly interface for creating and running automated tests.

Can I run my Appium Flutter Driver tests on real devices?

Yes, you can run your Appium Flutter Driver tests on real devices and emulators. Appium supports a wide range of devices and platforms, including iOS, Android, Windows, and macOS. To run your tests on real devices, you can just connect your device to your computer and configure the Appium settings accordingly. With Testsigma, you can easily set up your test environment and run your tests on real devices without hassle.


Test automation made easy

Start your smart continuous testing journey today with Testsigma.

SHARE THIS BLOG

RELATED POSTS


Big Data Testing_banner image
<strong>Hiring Talented Software Testers: </strong><strong><br></strong><strong>Unraveling the Secrets to Effective Hiring</strong>
Visual Regression Testing Tools_banner image
Appium Vs Cypress: Which is Better for Your Project?
Cucumber vs JUnit: What are the differences
Cucumber vs JUnit: What are the differences