Hi Mukesh,
Make sure everything is same for different URLs because the "Browser" object properties are different for different URLs. The only property that can identify different Browsers is "CreationTime".
If still everything same then you can acheive this task as follows:
1. In the Global Sheet, name a column as "URLs_In" and give all the URLs you want to test under this column.
2. Change/Set the "Data Table iteration" option to "Run on all rows" (File-->Settings-->Run-->Data Table iteration)
3. Create an action and name it "Launch_URL" and write the below code inside it
4. Then call your other actions that deal with actual test. Make sure you are identifying the "Browser" object by "CreationTime" property
5. After each iteration (at the last line of your last action) write the below code
Hope it will help you.
Make sure everything is same for different URLs because the "Browser" object properties are different for different URLs. The only property that can identify different Browsers is "CreationTime".
If still everything same then you can acheive this task as follows:
1. In the Global Sheet, name a column as "URLs_In" and give all the URLs you want to test under this column.
2. Change/Set the "Data Table iteration" option to "Run on all rows" (File-->Settings-->Run-->Data Table iteration)
3. Create an action and name it "Launch_URL" and write the below code inside it
Code:
SystemUtil.Run "iexplore",DataTable("URLs_In",dtGlobalSheet)
4. Then call your other actions that deal with actual test. Make sure you are identifying the "Browser" object by "CreationTime" property
5. After each iteration (at the last line of your last action) write the below code
Code:
Browser("CreationTime:=0").Close
Hope it will help you.