I need to execute the following steps:
1. Start an IE browser window and open a URL (Done using StartBrowser(final string URL)
2. Start a session (done by logging in)
3. Now, I want to enter a different URL in the same browser window which has the same session.
My question is related to Step 3. How can I overwrite the URL in the existing IE window.
Note: I am using a keyword driven framework written in java.
From the IBM RFT online help: You can use the
loadURL()method of the browser object.If you do not have the browser object already ‘learned’ into your object map, just record a click on the browser toolbar. Then you can modify that line to be
Browser_htmlBrowser().loadURL("http://stackoverflow.com");