Beispiel #1
0
 public SearchControlProxy(RemoteWebDriver selenium, string prefix)
 {
     this.Selenium   = selenium;
     this.Prefix     = prefix;
     this.Pagination = new PaginationSelectorProxy(this);
     this.Results    = new ResultTableProxy(this.Selenium, this.PrefixUnderscore, this.WaitSearchCompleted, hasDataEntity: true);
     this.Filters    = new FiltersProxy(this.Selenium, PrefixUnderscore);
 }
Beispiel #2
0
 public EntityContextMenuProxy(ResultTableProxy resultTable, bool isContext)
 {
     this.resultTable = resultTable;
     this.IsContext   = isContext;
 }