示例#1
0
 public virtual void SetupTest()
 {
     proc = new HttpCommandProcessor("localhost", 4444, "*chrome", _3DR_Testing.Properties.Settings.Default._3DRURL);
     selenium = new DefaultSelenium(proc);
     verificationErrors = new StringBuilder();
     selenium.Start();
 }
示例#2
0
 virtual public void SetupTest()
 {
     proc               = new HttpCommandProcessor("localhost", 4444, "*chrome", _3DR_Testing.Properties.Settings.Default._3DRURL);
     selenium           = new DefaultSelenium(proc);
     verificationErrors = new StringBuilder();
     selenium.Start();
 }
 public void ShouldNotCreateWithNullUrl()
 {
     processor = new HttpCommandProcessor(null);
 }
 public void ShouldCreateWithValidUrl()
 {
     string Url = "about:blank";
     processor = new HttpCommandProcessor(Url);
     Assert.AreEqual(Url, processor.Url);
 }