I have a RecyclerView with an ActionMode that can be activated by a long click on the RecyclerView element.
How to launch long click on Android using Xamarin UI tests? AndroidApp contains the TouchAndHold method (Func request), but this one doesn't seem to trigger a long click.
Anyone have a solution?
My code is:
Func<AppQuery, AppQuery> test = c => c.Marked("Test"); app.WaitForElement (test); app.TouchAndHold (test);
source share