我想要检查页面中的所有复选框。
如何选中所有复选框并启用所有复选框?
var chk = browser.checkboxes.where(x => x.id("test string"));
答案 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;
}
'