我如何检查所有复选框watin

时间:2013-09-11 12:21:42

标签: browser checkbox watin checked

我想要检查页面中的所有复选框。

如何选中所有复选框并启用所有复选框?

var chk = browser.checkboxes.where(x => x.id("test string"));

1 个答案:

答案 0 :(得分:0)

您可以使用此方法。

'
//Getting the count of the check boxes on the page.

int countOfCheckBox = browser.CheckBoxes.Count;

for (int i = 0; i < countOfCheckBox; i++)
{
    browser.CheckBoxes[i].Checked = true;
}
'