Hi Guys,
I am currently running IE6, with the latest WebAii, and when I set the browser to InternetExplorer I get the following:
The browswer opens but sits on about:blank.
Note that I am only using the WebAii, and not the testing suite.
The same test works fine in Firefox, and I do not have access to chrome to test it.
Thanks for your help guys
I am currently running IE6, with the latest WebAii, and when I set the browser to InternetExplorer I get the following:
SetUp : System.ApplicationException : Exception thrown attempting to launch Internet Explorer. Please make sure Internet Explorer is properly installed and you are able to launch it. ----> System.TimeoutException : Wait for condition has timed outat ArtOfTest.WebAii.BrowserSpecialized.InternetExplorer.InternetExplorerActions.LaunchNewBrowserInstance(Int32 timeout, ProcessWindowStyle windowStyle, String pipename)at ArtOfTest.WebAii.Core.Manager.LaunchNewBrowser(BrowserType browserToLaunch, Boolean waitForBrowserToConnect, ProcessWindowStyle windowStyle, String arguments)at ArtOfTest.WebAii.Core.Manager.LaunchNewBrowser(BrowserType browserToLaunch)at WebAiiTestClass.TestBase.TestBaseSetUp() in TestBase.cs: line 21--TimeoutExceptionat ArtOfTest.Common.WaitSync.CheckResult(WaitSync wait, String extraExceptionInfo)at ArtOfTest.Common.WaitSync.For(Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout)at ArtOfTest.Common.WaitSync.For(Predicate`1 predicate, T target, Int32 timeout)at ArtOfTest.Common.Win32.WindowManager.Attach(ref IntPtr handle, Boolean findTabWindow, Boolean loadClr, ref IntPtr hookId)at ArtOfTest.WebAii.BrowserSpecialized.InternetExplorer.InternetExplorerActions.LaunchNewBrowserInstance(Int32 timeout, ProcessWindowStyle windowStyle, String pipename)The browswer opens but sits on about:blank.
Note that I am only using the WebAii, and not the testing suite.
The same test works fine in Firefox, and I do not have access to chrome to test it.
I have all the settings set according to:
http://www.artoftest.com/support/webaii/topicsindex.aspx?topic=configureie6
But still no help.
Unfortunately upgrading to IE7+ is not an option. Please any help would be greatly appreciated.
Also just incase it helps:
namespace WebAiiTestClass{ [TestFixture] public abstract class TestBase : BaseTest { protected internal SilverlightApp App { get; private set; } [SetUp] public void TestBaseSetUp() { var settings = GetSettings(); settings.EnableSilverlight = true; settings.LogLocation = @"C:\Documents and Settings\alicross\My Documents\Dev\UI\Testing\WebAiiTestClass"; Initialize(settings, NUnit.Core.TestContext.Out.WriteLine); Manager.LaunchNewBrowser(BrowserType.InternetExplorer); ActiveBrowser.NavigateTo("http://localhost:4882/TestPage.aspx"); App = ActiveBrowser.SilverlightApps()[0]; } [TearDown] public void TestBaseTearDown() { CleanUp(); } [TestFixtureTearDown] public void TestBaseFixtureTearDown() { ShutDown(); } }}Thanks for your help guys