コード例 #1
0
 public void SetupTest()
 {
     HttpCommandProcessor processor = new HttpCommandProcessor();
     DefaultBrowserLauncher launcher = new DefaultBrowserLauncher();
     selenium = new DefaultSelenium(processor, launcher);
     selenium.Start();
 }
コード例 #2
0
ファイル: Driver.cs プロジェクト: ubuetake/selenium-vba
		public Driver()
		{
			this.commandProcessor = new HttpCommandProcessor();
			this.commandProcessor.SendEventInfo += new HttpCommandProcessor.EventInfoHandler(ReceivedEventInfo);
			this.commandProcessor.ExceptionLevel = Err.e4verify ;
			this.commandProcessor.EventLevel = Evt.e4cmdrunned ;			
		}
コード例 #3
0
ファイル: GoogleTest.cs プロジェクト: santiycr/selenium
 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();
 }