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 に答える