Flutter Integration Tests in details

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

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)

How Identify widgets ?
You can Identify elements by:
- Key (find.byKey(Key(‘crossButton’)))
- Type (find.byType(Icon)))
- Text (find.byType(Text))

How looks pretty simple test:

How run tests?

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

Observe results in Firebase side (history of runnings)

Cucumber configuration

Cucumber report configuration

That is all