Atata.AtataContextBuilder.UseDriver(System.Func)

Here are the examples of the csharp api class Atata.AtataContextBuilder.UseDriver(System.Func) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

9 Examples 7

1. Example

Project: atata
Source File: AtataContextBuilder.cs
public CustomDriverAtataContextBuilder UseDriver(Func<RemoteWebDriver> driverFactory)
        {
            driverFactory.CheckNotNull(nameof(driverFactory));

            return UseDriver(new CustomDriverAtataContextBuilder(BuildingContext, driverFactory));
        }

2. Example

Project: atata
Source File: AtataContextBuilder.cs
public ChromeAtataContextBuilder UseChrome()
        {
            return UseDriver(new ChromeAtataContextBuilder(BuildingContext));
        }

3. Example

Project: atata
Source File: AtataContextBuilder.cs
public FirefoxAtataContextBuilder UseFirefox()
        {
            return UseDriver(new FirefoxAtataContextBuilder(BuildingContext));
        }

4. Example

Project: atata
Source File: AtataContextBuilder.cs
public InternetExplorerAtataContextBuilder UseInternetExplorer()
        {
            return UseDriver(new InternetExplorerAtataContextBuilder(BuildingContext));
        }

5. Example

Project: atata
Source File: AtataContextBuilder.cs
public EdgeAtataContextBuilder UseEdge()
        {
            return UseDriver(new EdgeAtataContextBuilder(BuildingContext));
        }

6. Example

Project: atata
Source File: AtataContextBuilder.cs
public OperaAtataContextBuilder UseOpera()
        {
            return UseDriver(new OperaAtataContextBuilder(BuildingContext));
        }

7. Example

Project: atata
Source File: AtataContextBuilder.cs
public PhantomJSAtataContextBuilder UsePhantomJS()
        {
            return UseDriver(new PhantomJSAtataContextBuilder(BuildingContext));
        }

8. Example

Project: atata
Source File: AtataContextBuilder.cs
public SafariAtataContextBuilder UseSafari()
        {
            return UseDriver(new SafariAtataContextBuilder(BuildingContext));
        }

9. Example

Project: atata
Source File: AtataContextBuilder.cs
public RemoteDriverAtataContextBuilder UseRemoteDriver()
        {
            return UseDriver(new RemoteDriverAtataContextBuilder(BuildingContext));
        }