Ejemplo n.º 1
0
 private IEnumerable <IWebElement> FindAll(By by,
                                           Scope scope,
                                           Options options,
                                           Func <IWebElement, bool> predicate = null)
 {
     return(_elementFinder.FindAll(by, scope, options, predicate));
 }
Ejemplo n.º 2
0
 private IEnumerable <IWebElement> AllElementsByTag(Scope scope, string tagNameToFind, Options options)
 {
     return(elementFinder.FindAll(By.TagName(tagNameToFind), scope, options));
 }
Ejemplo n.º 3
0
 private IWebElement FindFrameByTag(string locator, Scope scope, string tagNameToFind)
 {
     return(WebElement(locator, elementFinder.FindAll(By.TagName(tagNameToFind), scope)));
 }
Ejemplo n.º 4
0
 private IEnumerable <IWebElement> FindAll(By by, Scope scope)
 {
     return(elementFinder.FindAll(by, scope));
 }