This question is locked. New answers and comments are not allowed.
I downloaded the latest version of WebAii from the official site of ArtOfTest, and installed it for testing. it failed when i running following code:
// Initialize the settings you want used.
Settings mySettings = new Settings(BrowserType.InternetExplorer, @"d:\log\");
// Create the manager object
Manager myManager = new Manager(mySettings);
// Start the manager
myManager.Start();
// Launch a new browser instance. [This will launch an IE instance given the setting above]
myManager.LaunchNewBrowser(BrowserType.InternetExplorer, true);
// Navigate to a certain web page
myManager.ActiveBrowser.NavigateTo("http://www.google.com");
// Perform your automation actions.
Element mybtn = myManager.ActiveBrowser.Find.ByTagIndex("input", 3);
myManager.ActiveBrowser.Actions.Click(mybtn);
// Shut-down the manager and do all clean-up
myManager.Dispose();
it thrown a 'System.TimeoutException' at method LaunchBrowser(). I googled web for the solution as follow:
1. Check your security policy regarding Named Pipes
2. Disable any Internet Explorer plug-ins
but all of this didn't work for me. it just open a blank IE, but never navigate to the target URL.
My environment information as follow:
OS: Windows Vista Ultimate X86
IE: IE 8.0
WebAii Version: 2.0.9.0
Any ideas?
Regards,
Sevolution