Xamarin.UITest: How to Retrieve All Elements in List
I have a list of 500 elements and when I use app.Query on the page, Xamarin.UITest gives me only 6 elements as only 6 elements are visible in UI. How can I retrieve all 500 elements from the list inside of my UITest? As described above, the expected behavior of app.Query will only return the results of all visible controls on the page. Thus, if a control is not visible, app.Query will not return it. The way to retrieve all of the data in a list is to use a Backdoor Method. Xamarin has additional documentation on how to use backdoors in UITest. Sample App This sample app implements the snippets