Posted 21 Feb 2014 Link to this post
Posted 26 Feb 2014 Link to this post
Posted 26 Feb 2014 in reply to Ivaylo Link to this post
Posted 03 Mar 2014 Link to this post
Posted 03 Mar 2014 in reply to Ivaylo Link to this post
Posted 05 Mar 2014 Link to this post
// Initialize the settings
Settings mySettings =
new
Settings();
// Set the default browser
mySettings.Web.DefaultBrowser = BrowserType.InternetExplorer;
// Create the manager object
Manager myManager =
Manager(mySettings);
// Start the manager
myManager.Start();
// Launch a new browser instance. [This will launch an IE instance given the setting above]
myManager.LaunchNewBrowser();
// Navigate to a certain web page
myManager.ActiveBrowser.NavigateTo(
"http://www.google.com"
);
Posted 05 Mar 2014 in reply to Ivaylo Link to this post
Posted 06 Mar 2014 in reply to Kuldeep Link to this post
Posted 06 Mar 2014 in reply to Madhu Link to this post
Posted 25 Mar 2016 in reply to Kuldeep Link to this post