testcafe
テスト フレームワークを使用しています - https://devexpress.github.io/testcafe。
次のコードを書きました。
const table = Selector('#table');
for(let i = 0; i < table.rows.length; i++){
for(let j = 0; j < table.columns.length; j++) {
let tdText = await table.rows[i].cells[j].textContent;
//another actions
}
}
testcafe を使用してテーブルのすべてのセルのテキストを取得するにはどうすればよいですか?