コード例 #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;
 }
コード例 #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;
 }
コード例 #3
0
ファイル: LineContainer.cs プロジェクト: crazyants/extensions
 public LineContainer(IWebElement element, PropertyRoute route = null)
 {
     this.Element = element;
     this.Route   = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }
コード例 #4
0
 public FrameModalProxy(IWebElement element, PropertyRoute route = null)
     : base(element)
 {
     this.Route = route == null || route.IsImplementation(typeof(T)) ? PropertyRoute.Root(typeof(T)) : route;
 }