Please see one of the the ids below. Bold (0) gets changed in each iteration.
NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:0:BulkInvoiceItemsLV_ClaimNumber
Numbers will be increased 0 to 1000. It is in the middle of the string. How I can put a increamental loop their?
Let me give a try Ankur. Thank you so much!
Hi basanth27 and Ankur. Thank you for your help. You guys are awesome! I am sorry as I am pretty new in QTP.
The Ids for for 1st, 2nd and 3rd Editbox are
So This is how I am trying for the 1st one
Please help me out.
NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:0:BulkInvoiceItemsLV_ClaimNumber
Numbers will be increased 0 to 1000. It is in the middle of the string. How I can put a increamental loop their?
Let me give a try Ankur. Thank you so much!
Hi basanth27 and Ankur. Thank you for your help. You guys are awesome! I am sorry as I am pretty new in QTP.
The Ids for for 1st, 2nd and 3rd Editbox are
Code:
NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:0:BulkInvoiceItemsLV_ClaimNumber
NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:1:BulkInvoiceItemsLV_ClaimNumber
NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:2:BulkInvoiceItemsLV_ClaimNumber
So This is how I am trying for the 1st one
Code:
For z= 0 to 1000
id1st="NewBulkInvoiceDetail:BulkInvoiceDetailScreen:BulkInvoiceItemsLV:"
id2nd=z
id3rd=":BulkInvoiceItemsLV_ClaimNumber"
ClaimNumberId=id1st&id2nd&id3rd
Browser("micclass:=Browser").Page("micclass:=Page").WebEdit("html id:=ClaimNumberId").Set ""
Next
Please help me out.