java.lang.Object
org.openqa.selenium.By
org.openqa.selenium.support.pagefactory.ByAll
All Implemented Interfaces:
Serializable

public class ByAll extends org.openqa.selenium.By implements Serializable
Mechanism used to locate elements within a document using a series of lookups. This class will find all DOM elements that matches any of the locators in sequence, e.g.
 driver.findElements(new ByAll(by1, by2))
 
will find all elements that match by1 and then all elements that match by2. This means that the list of elements returned may not be in document order.
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.openqa.selenium.By

    org.openqa.selenium.By.ByClassName, org.openqa.selenium.By.ByCssSelector, org.openqa.selenium.By.ById, org.openqa.selenium.By.ByLinkText, org.openqa.selenium.By.ByName, org.openqa.selenium.By.ByPartialLinkText, org.openqa.selenium.By.ByTagName, org.openqa.selenium.By.ByXPath, org.openqa.selenium.By.Remotable
  • Constructor Summary

    Constructors
    Constructor
    Description
    ByAll(org.openqa.selenium.By... bys)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.openqa.selenium.WebElement
    findElement(org.openqa.selenium.SearchContext context)
     
    List<org.openqa.selenium.WebElement>
    findElements(org.openqa.selenium.SearchContext context)
     
     

    Methods inherited from class org.openqa.selenium.By

    className, cssSelector, equals, getJavascriptExecutor, getWebDriver, hashCode, id, linkText, name, partialLinkText, tagName, xpath

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ByAll

      public ByAll(org.openqa.selenium.By... bys)
  • Method Details

    • findElement

      public org.openqa.selenium.WebElement findElement(org.openqa.selenium.SearchContext context)
      Overrides:
      findElement in class org.openqa.selenium.By
    • findElements

      public List<org.openqa.selenium.WebElement> findElements(org.openqa.selenium.SearchContext context)
      Specified by:
      findElements in class org.openqa.selenium.By
    • toString

      public String toString()
      Overrides:
      toString in class org.openqa.selenium.By