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; }
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; }
public LineContainer(IWebElement element, PropertyRoute route = null) { this.Element = element; this.Route = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route; }
public FrameModalProxy(IWebElement element, PropertyRoute route = null) : base(element) { this.Route = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route; }