diff --git a/src/TestStack.White/UIItems/ListViewRow.cs b/src/TestStack.White/UIItems/ListViewRow.cs index 36237562..d4357a51 100644 --- a/src/TestStack.White/UIItems/ListViewRow.cs +++ b/src/TestStack.White/UIItems/ListViewRow.cs @@ -43,7 +43,8 @@ public virtual ListViewCells Cells new AutomationSearchCondition( new OrCondition( AutomationSearchCondition.ByControlType(ControlType.Text).Condition, - AutomationSearchCondition.ByControlType(ControlType.CheckBox).Condition))); + AutomationSearchCondition.ByControlType(ControlType.CheckBox).Condition, + AutomationSearchCondition.ByControlType(ControlType.ComboBox).Condition))); return new ListViewCells(collection, actionListener, header); } }