Interface Finder<E extends Element>

All Superinterfaces:
IsElement<E>
All Known Implementing Classes:
InputElementBuilder

@Deprecated public interface Finder<E extends Element> extends IsElement<E>
Deprecated.
Replaced by ElementQueryMethods.
  • Method Summary

    Modifier and Type
    Method
    Description
    default <F extends HTMLElement>
    F
    closest(By selector)
    Deprecated.
    Finds the closest HTML element for the given selector.
    default <F extends HTMLElement>
    F
    find(By selector)
    Deprecated.
    Finds a single HTML element for the given selector.
    findAll(By selector)
    Deprecated.
    Finds all HTML elements for the given selector.

    Methods inherited from interface org.jboss.elemento.IsElement

    element
  • Method Details

    • findAll

      default Iterable<HTMLElement> findAll(By selector)
      Deprecated.
      Finds all HTML elements for the given selector.
    • find

      default <F extends HTMLElement> F find(By selector)
      Deprecated.
      Finds a single HTML element for the given selector.
    • closest

      default <F extends HTMLElement> F closest(By selector)
      Deprecated.
      Finds the closest HTML element for the given selector.