Class ElementSupplierLocator

  • All Implemented Interfaces:
    org.openqa.selenium.support.pagefactory.ElementLocator
    Direct Known Subclasses:
    ElementInstanceLocator

    public class ElementSupplierLocator
    extends java.lang.Object
    implements org.openqa.selenium.support.pagefactory.ElementLocator
    Element locator implemented by a Supplier of WebElement.
    • Constructor Summary

      Constructors 
      Constructor Description
      ElementSupplierLocator​(java.util.function.Supplier<org.openqa.selenium.WebElement> elementSupplier)
      Creates a new element supplier locator.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.openqa.selenium.WebElement findElement()  
      java.util.List<org.openqa.selenium.WebElement> findElements()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ElementSupplierLocator

        public ElementSupplierLocator​(java.util.function.Supplier<org.openqa.selenium.WebElement> elementSupplier)
        Creates a new element supplier locator.
        Parameters:
        elementSupplier - element supplier
    • Method Detail

      • findElement

        public org.openqa.selenium.WebElement findElement()
        Specified by:
        findElement in interface org.openqa.selenium.support.pagefactory.ElementLocator
      • findElements

        public java.util.List<org.openqa.selenium.WebElement> findElements()
        Specified by:
        findElements in interface org.openqa.selenium.support.pagefactory.ElementLocator
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object