Hello John,
I tried to execute the script you shared.
The problem is in this line
_Excel_RangeInsert($oWorkbook.ActiveSheet, "2:2") ; "Before row, number of rows to insert "
In the above line 2:2 indicates, adding of rows from 2nd row to 2nd row. That is the reason it inserts only one row.
If you want to add two rows this is how it should be
_Excel_RangeInsert($oWorkbook.ActiveSheet, "2:3") ; "Before row, number of rows to insert "
Good luck
Hello Guys,
I am new to AutoIt and I am loving the tool. Let me explain what I am experiencing.
I am automating set of installations. All the installers are made with help of wix templates, But Au3Info tool is unable to detect the objects except for window name. Currently i am completely relying on Sleep() function. Please help how can i identify the objects and automate the test case in an efficient way.