Example #1
0
 public DbPage(
     IRepository repository,
     RouteToUrl routeToUrl)
 {
     this.repository = repository;
     this.routeToUrl = routeToUrl;
 }
Example #2
0
 public SeleniumBrowser(
     JsonSerializer jsonSerializer,
     RouteToUrl routeToUrl)
 {
     driver = new FirefoxDriver();
     this.jsonSerializer = jsonSerializer;
     this.routeToUrl     = routeToUrl;
     Thread.Sleep(3000);
 }
Example #3
0
 public SeleniumBrowser(RouteToUrl routeToUrl)
 {
     driver          = new FirefoxDriver();
     this.routeToUrl = routeToUrl;
 }