Control Collection
When to use
How to use
[Selector("CheckBox")]
public ControlCollection<ICheckBox> checkBoxCollection { get; set; } foreach (var checkBox in MyPageObject.checkBoxCollection)
{
checkBox.Checked = true;
}Last updated
Was this helpful?