Why Xamarin UI tests are so important?

Automated tests helps in catching errors in the codebase with developers being able to better collaborate in building user stories. Lets see how to write e2e tests for Xamarin.

Image

AppInitializer

First of all, we need to initialize a Xamarin.UITest on Android and iOS by using the static ConfigureApp class:

Image

AppInitialize

Xamarin UITest Queries and Debugging

Xamarin UI tests allow you use the next Queries

  • ID
  • Class
  • Button
  • Text
  • Marked
  • XPath
  • CSS
How it should look when you write a test:
Image

More difficult

We are going to use the app.Repl() method which allows you to stop the execution of your tests and see the whole model tree.

Just place app.Repl() in any part of your tests where you want your tests to stop executing.

Image
That is all, pretty simple right? Then, to identify elements you can use the app.Flash() command
Image
Image

Page Object model

Main idea like each page it’s external class

Image

Now, once we are done with simple tests, it’s time to run them somewhere in the cloud (i.e Microsoft App center)

To run tests on Android you can use such command (from your Laptop)

Image
Image
THAT IS ALL