public SauceSession(SauceOptions options, ISauceRemoteDriver driver)
 {
     Options = options;
     Driver  = driver;
 }
示例#2
0
 public SauceSession(SauceOptions options, ISauceRemoteDriver driver)
 {
     Options = options;
     DriverImplementation = driver;
 }
 public SauceSession(ISauceRemoteDriver driver)
 {
     Driver  = driver;
     Options = new SauceOptions();
 }
示例#4
0
 public SauceSession(ISauceRemoteDriver driver)
 {
     DriverImplementation = driver;
     Options = new SauceOptions();
 }