Flutter Integration Tests in details


Image

How to install Flutter & Dart ?

To setup the local test environment the following needs to be installed:

Android Studio (download from here)
Flutter (download from here)

To setup the local (information is here)

To verify that everything was installed successfully execute from terminal following command:

flutter doctor

Flutter doctor is used to check what kind of necessary components were installed/not installed on your local machine

Image

If you have any kind of red issue notifications you should to fix them. Check the system variables (see example on OS X .bash_profile)

Image

How Identify widgets ?
You can Identify elements by:

  • Key (find.byKey(Key(‘crossButton’)))
  • Type (find.byType(Icon)))
  • Text (find.byType(Text)) 
Image

How looks pretty simple test:

Image

How run tests?

Image

How to run tests on Firebase side ?

To run tests on Firebase side you just need to make bash_file:

Image

Observe results in Firebase side (history of runnings)

Image

Cucumber configuration

Image
Cucumber report configuration
Image
That is all