From b67905a7a70493a51ead8a32b06fdfe761c6a31a Mon Sep 17 00:00:00 2001 From: ilya-murzinov Date: Mon, 6 Jan 2014 04:26:52 -0800 Subject: [PATCH] Fix. --- src/TestStack.White/UIItems/ListViewRow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } }