Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページ内のすべてのチェック ボックスをオンにしたい。
すべてのチェックボックスを選択してすべて有効にする方法は?
var chk = browser.checkboxes.where(x => x.id("test string"));
このアプローチを使用できます。
' //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; } '