daniel-luberda / DLToolkit.Forms.Controls

Xamarin.Forms Custom Controls
Apache License 2.0
393 stars 182 forks source link

Unable to spy items with Appium #290

Closed nagarajas closed 4 years ago

nagarajas commented 4 years ago

We are unable to spy or find controls which renders within FlowColumnTemplate in iOS.

What all option tried?

'{ public class FlowListViewInternalCellRenderer : ViewCellRenderer { public override UIKit.UITableViewCell GetCell(Xamarin.Forms.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) { tv.AllowsSelection = false; var cell = base.GetCell(item, reusableCell, tv); cell.SelectionStyle = UITableViewCellSelectionStyle.None; cell.IsAccessibilityElement = true; return cell; } } }`

image

How to verify?

nagarajas commented 4 years ago

We could able to resolve this issue by upgrading to latest Xamarin.Forms