コマンドで提供されているコマンドを実装することが可能かどうかは、Nightwatch.js
です。Nightwatch実行コマンド、繰り返し
Nightwatch.js
とすると、テーブル要素に対して、行の数を基準にして何度もアクションを実行したいと考えています。明らかに、私のコードは動作しません、誰もそれを行う方法の良いアイデアを持っていますか?
// here is the execute() command
.exeute(
function() {
const rows = document.querySelectorAll('table tbody tr');
return rows.length; // suppose we have 3 rows in the table
},
[],
function(result) {
// here I want to perform an action to all the 3 rows, but I
// could not find a way to do that, here is my original thought
for (let i = 1; i <= result; i++) {
client.element('css selector', `table tbody tr:nth-child(${i})`, function() {
// Action, do something here
});
}
}
)
.waitForElementPresent('.mainpage', 15000)
ありがとうございます。ありがとうございます。私はmap()関数を使用しますが、あなたと同じアイデアです。 –