If you have your browser captured by recording, you can just click on the Expert View tab and type something similar to:
Replace the "<Browser Name>" portion of the code with whatever the name of your browser is that was captured when you started recording and replace the URL with the URL you want the browser to go to. Then repeat the statements in the script as many times as you need it. The "Sync" function tells the script to wait until the page finishes loading before moving to the next step. click here for a nice intro to QTP. Hope this helps.
Code:
Browser("<Browser Name>").Navigate "www.google.com"
Browser("<Browser Name>").Sync
Replace the "<Browser Name>" portion of the code with whatever the name of your browser is that was captured when you started recording and replace the URL with the URL you want the browser to go to. Then repeat the statements in the script as many times as you need it. The "Sync" function tells the script to wait until the page finishes loading before moving to the next step. click here for a nice intro to QTP. Hope this helps.