U need to put a breakpoint at the first line of the script. Then hit run or F5. The cursur will stop at the breakpoint inserted. U can then use F10 to debug line by line.
Regarding index, i used to assign an index number to the object in the object repository itself (Properties). This way the object will become unique.
Or u can use descriptive programming to assign an index.
ur code shld be something like this....
Plz share the scenario u want to automate for better answer.
Regarding index, i used to assign an index number to the object in the object repository itself (Properties). This way the object will become unique.
Or u can use descriptive programming to assign an index.
Code:
Set lnk_dept=Description.Create
lnk_dept("text").value=strSuperDeptName
lnk_dept("html tag").value="A"
lnk_dept("height").value="28"
ur code shld be something like this....
Code:
Set lnk_dept=Description.Create
lnk_dept("text").value=strSuperDeptName
lnk_dept("html tag").value="A"
lnk_dept("height").value="28"
lnk_dept("index").value="1"
Plz share the scenario u want to automate for better answer.