public void SetupTest()
 {
     HttpCommandProcessor processor = new HttpCommandProcessor();
     DefaultBrowserLauncher launcher = new DefaultBrowserLauncher();
     selenium = new DefaultSelenium(processor, launcher);
     selenium.Start();
 }
Exemple #2
0
		public Driver()
		{
			this.commandProcessor = new HttpCommandProcessor();
			this.commandProcessor.SendEventInfo += new HttpCommandProcessor.EventInfoHandler(ReceivedEventInfo);
			this.commandProcessor.ExceptionLevel = Err.e4verify ;
			this.commandProcessor.EventLevel = Evt.e4cmdrunned ;			
		}
Exemple #3
0
 public void SetupTest()
 {
     HttpCommandProcessor processor = new HttpCommandProcessor();
     DefaultBrowserLauncher launcher = new InternetExplorerBrowserLauncher();
     selenium = new DefaultSelenium(processor, launcher, DefaultSelenium.SELENESE_RUNNER_URL.Replace("html", "hta"));
     selenium.Start();
 }