ankita srivastava
ankita srivastava

Reputation: 43

How to tap master page in Master Detail page in Xamarin forms UI Test?

I have given AutomationId , it is not working for master page,but its detail page is working fine.How to tap the Hamburger icon of Master Detail Page?

Upvotes: 1

Views: 1272

Answers (1)

Timo Salomäki
Timo Salomäki

Reputation: 7189

You can get the reference to the hamburger icon with this query:

x => x.Class("ImageButton").Marked("OK");

A good example of this in use is the Evolve 2016 app by Xamarin. Take a look at the code line 93 here.

Upvotes: 4

Related Questions