Navigate - web automation method
Internet Explorer automation method that navigates the browser to a given URL.
Applies to:
- Browser
browserObj.Navigate(url_string);
Arguments:
-
-
url_string
is the URL where the browser will navigate.
Remarks:
-
This Internet Explorer automation method works for all versions: IE6, IE7, IE8 and with IE protected mode on Windows XP, Vista and Win7.
In case of failure this method throws a Internet Explorer automation exception and the lastError property of the Core object is set to FAIL_ERROR or BROWSER_CONNECTION_LOST_ERROR.
Example:
var coreObj = new ActiveXObject("OpenTwebst.Core");
var newBrowser = coreObj.StartBrowser("http://www.codecentrix.blogspot.com/");
newBrowser.Navigate("http://www.codecentrix.com/");
See also:
- Browser | StartBrowser | WaitToLoad | isLoading | navigationError
©
2017 CodeCentrix Software. All rights reserved.