app.Tap works fine everywhere in our app expect on one particular place where there's a list view. We use custom list view (syncFusion) and I am not sure if that's what causing the tap issue.
Note that tap works in REPL but not from the scripts.
Any help is much appreciated.
Thank you!
Here's the code I am using to tap on the date entry under History section as shown in the attachment.
public SelectStepsScreen TapHistoryEntry(int HistoryListRowNumber)
{
app.WaitForElement(x => x.Marked("lblHistoryDate"));
app.Tap(x => x.Marked("lblHistoryDate").Index(HistoryListRowNumber));
TakeScreenshotWriteToConsole("Tapped on "+HistoryListRowNumber+" entry in History section.");
return new SelectStepsScreen();
}