Navigates to the URL.
This example changes the URL of the current Web session and opens another Web session with a different URL on a new tab. To run this sample, create and open a Web session and run this code in the session code module.
'This example navigates to a Web page and then opens another Web session on a new tab.
Sub navigateToWeblinks()
'Change the URL for this Web page to go to the Documentation page
ThisWebControl.Navigate1 "https://www.microfocus.com/documentation/reflection-desktop/"
'open the InfoConnect videos page in a new tab
ThisWebControl.Navigate2 "https://www.microfocus.com/documentation/reflection-desktop/latest/videos/user-intro.html", True
End Sub