Example #1
0
 public SauceSession(SauceOptions options)
 {
     this.options = options;
 }
Example #2
0
 public SauceSession(SauceOptions options, ISauceRemoteDriver driver)
 {
     Options = options;
     DriverImplementation = driver;
 }
Example #3
0
 public SauceSession(ISauceRemoteDriver driver)
 {
     DriverImplementation = driver;
     Options = new SauceOptions();
 }
Example #4
0
 public SauceSession(SauceOptions options)
 {
     Options = options;
     DriverImplementation = new SauceDriver();
 }
Example #5
0
 public SauceSession()
 {
     DriverImplementation = new SauceDriver();
     Options = new SauceOptions();
 }