Class LazyComponentList<T>

    • Constructor Detail

      • LazyComponentList

        public LazyComponentList​(ComponentInstantiator instantiator,
                                 Class<T> componentClass,
                                 List<org.openqa.selenium.WebElement> elements)
        Creates a new lazy component list.
        Parameters:
        instantiator - component instantiator
        componentClass - component class
        elements - underlying element list
    • Method Detail

      • transformList

        protected List<T> transformList()
        Transform the actual list into components.
        Returns:
        transformed list
      • fireLazyComponentsInitialized

        protected void fireLazyComponentsInitialized​(Map<org.openqa.selenium.WebElement,​T> componentMap)
        First lazy components initialized event.
        Parameters:
        componentMap - components
      • addLazyComponentsListener

        public boolean addLazyComponentsListener​(LazyComponentsListener<T> listener)
        Description copied from interface: LazyComponents
        Add a lazy components initialization listener.
        Specified by:
        addLazyComponentsListener in interface LazyComponents<T>
        Parameters:
        listener - lazy components listener
        Returns:
        true if the listener was added, false otherwise
      • removeLazyComponentsListener

        public boolean removeLazyComponentsListener​(LazyComponentsListener<T> listener)
        Description copied from interface: LazyComponents
        Remove an existing lazy components initialization listener.
        Specified by:
        removeLazyComponentsListener in interface LazyComponents<T>
        Parameters:
        listener - lazy components listener
        Returns:
        true if the listener was added, false otherwise
      • isLazy

        public boolean isLazy()
        Description copied from interface: LazyComponents
        Get the lazyness of this object.
        Specified by:
        isLazy in interface LazyComponents<T>
        Returns:
        true if it's lazy, false otherwise.
      • isLazyInitialized

        public boolean isLazyInitialized()
        Description copied from interface: LazyComponents
        Check if the underlying lazy components are initialized.
        Specified by:
        isLazyInitialized in interface LazyComponents<T>
        Returns:
        true if lazy components are initialized, false otherwise.
      • getWrappedElements

        public List<org.openqa.selenium.WebElement> getWrappedElements()
        Description copied from interface: WrapsElements
        Get the wrapped elements
        Specified by:
        getWrappedElements in interface WrapsElements
        Returns:
        wrapped elements