1. Record the script which you want to perform for stress testing.
For Example: if you want to add 1000 records then just record add functionality script.
2. Now just add a loop for that script which contains add record functionality. See below example
For i=0 to 1000
Put your add record script code here. It will repeat the add record loop till 1000 entries will be done.You can insert 1000 records using For.. Next loop.You can also insert more than 1000 or more.Just change your for loop condition for that.
Next will increase your loop counter
Next
Below code is a full example of the stress testing:
For i=0 to 1000
Below code will insert first name jigar. For unique name you can pass value of i so it will insert unique name each time.
Browser(“PMS”).Page(“PMS_3″).WebEdit(“txt_Name”).Set “Jigar” & i
Below code will enter address in the address field.
Browser(“PMS”).Page(“PMS_3″).WebEdit(“txt_Address”).Set “Surat”
Below code will enter mobile number in the mobile number field.
Browser(“PMS”).Page(“PMS_3″).WebEdit(“txt_No”).Set “9992426690″
Below is code to save the details
Browser(“PMS”).Page(“PMS_3″).Link(“btn_save”).Click
Next
This is a script to add 1000 records.