Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:CSF.WebDriverExtras.Proxies.SauceConnectWebDriverProxyCreator"/> class.
 /// </summary>
 /// <param name="identificationFactory">Identification factory.</param>
 public SauceConnectWebDriverProxyCreator(IGetsBrowserIdentification identificationFactory)
     : base(identificationFactory)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:CSF.WebDriverExtras.Proxies.RemoteWebDriverProxyCreator"/> class.
 /// </summary>
 /// <param name="identificationFactory">Identification factory.</param>
 public RemoteWebDriverProxyCreator(IGetsBrowserIdentification identificationFactory)
 {
     this.identificationFactory = identificationFactory ?? new BrowserIdentificationFactory();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes the <see cref="T:CSF.WebDriverExtras.WebDriverExtensions"/> class.
 /// </summary>
 static WebDriverExtensions()
 {
     browserIdFactory = new BrowserIdentificationFactory();
 }