0

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

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

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

1 回答 1

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;
}
'
于 2016-02-28T02:19:01.423 回答