How to click the element using automation id in Xamarin.UiTest?

后端 未结 1 1988
时光取名叫无心
时光取名叫无心 2021-01-27 20:05

The app is developed using Xamarin.forms. I am examining the app using repl(). While using tree command i can see following output

>>> tree
[[object Ca         


        
相关标签:
1条回答
  • 2021-01-27 20:43

    Get the label with something like static readonly Func<AppQuery, AppQuery> MyLabel = c => c.Marked("TermsAndConditions_btn"); and then call app.Tap(MyLabel).

    0 讨论(0)
提交回复
热议问题