Reputation: 43
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
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