Skip to content

Commit

Permalink
Merge pull request #191 from ilya-murzinov/Issue155
Browse files Browse the repository at this point in the history
Issue155 fixed.
  • Loading branch information
JakeGinnivan committed Jan 16, 2014
2 parents 515ee83 + b67905a commit 592b6f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TestStack.White/UIItems/ListViewRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 592b6f3

Please sign in to comment.