I am trying to automate Xamarin.Forms android app.There are multiple radio buttons(third party) having same text on same page.
I am trying to tap on those with following code
var elements = app.Query(e => e.All().Property("text", "OK"));
foreach (var element in elements)
{
app.Tap(element.Id);
}
but it is taking huge time (around 15 seconds) between 2 taps
what can be done for reducing this time ?