Esempio n. 1
0
 public LineContainer(RemoteWebDriver selenium, string prefix = null, PropertyRoute route = null)
 {
     this.Selenium = selenium;
     this.Prefix   = prefix;
     this.Route    = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }
Esempio n. 2
0
 public PopupControl(RemoteWebDriver selenium, string prefix, PropertyRoute route = null)
     : base(selenium, prefix)
 {
     this.Route = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }
Esempio n. 3
0
 public LineContainer(IWebElement element, PropertyRoute route = null)
 {
     this.Element = element;
     this.Route   = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }
Esempio n. 4
0
 public FrameModalProxy(IWebElement element, PropertyRoute route = null)
     : base(element)
 {
     this.Route = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }