Skip to content

Commit 592b6f3

Browse files
committed
Merge pull request #191 from ilya-murzinov/Issue155
Issue155 fixed.
2 parents 515ee83 + b67905a commit 592b6f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/TestStack.White/UIItems/ListViewRow.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ public virtual ListViewCells Cells
4343
new AutomationSearchCondition(
4444
new OrCondition(
4545
AutomationSearchCondition.ByControlType(ControlType.Text).Condition,
46-
AutomationSearchCondition.ByControlType(ControlType.CheckBox).Condition)));
46+
AutomationSearchCondition.ByControlType(ControlType.CheckBox).Condition,
47+
AutomationSearchCondition.ByControlType(ControlType.ComboBox).Condition)));
4748
return new ListViewCells(collection, actionListener, header);
4849
}
4950
}

0 commit comments

Comments
 (0)