ḥari
2 years agoFrequent Contributor
Button issue
Hi team, In my test complete application I can't able to do pause (not enabled) or debug while executing. The version which I have used is 15.52 Can amy one help me overcome these issue??
Get into the habit of indenting your code, as it makes it easier to read and test during debugging. We can see where the for loop begins and ends, and what sections of code are being executed etc.
function Example()
{
for (let i = 2; i <= RowCount; i++)
{
let s = "";
for (let j = 3; j <= 3; j++)
{
s = VarToString(getExcel.Cell(j, i).Value);
var browsers = ["chrome", "edge"];
for (var k = 0; k < browsers.length; k++)
{
// etc
}
// etc
}
// etc
}
}