How can I do a count rows function in the catalon recorder? I would like to store it and use in the do while condition… ![]()
Hi @czuczer,
Can you give a pseudocode on what you want to achieve?
Hello,
var tableLength = tableRowSelector.length();
var index = 0;
while (index < tableLength) {
// do test for row
index++;
}
I have the same question, thank you!