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