Class Finders

java.lang.Object
org.openqa.selenium.lift.Finders

@Deprecated public class Finders extends Object
Deprecated.
  • Constructor Details

    • Finders

      public Finders()
      Deprecated.
  • Method Details

    • div

      public static HtmlTagFinder div()
      Deprecated.
    • div

      public static HtmlTagFinder div(String id)
      Deprecated.
    • link

      public static HtmlTagFinder link()
      Deprecated.
    • link

      public static HtmlTagFinder link(String anchorText)
      Deprecated.
    • links

      public static HtmlTagFinder links()
      Deprecated.
    • titles

      public static HtmlTagFinder titles()
      Deprecated.
    • title

      public static HtmlTagFinder title()
      Deprecated.
    • title

      public static HtmlTagFinder title(String title)
      Deprecated.
    • images

      public static HtmlTagFinder images()
      Deprecated.
    • image

      public static HtmlTagFinder image()
      Deprecated.
    • table

      public static HtmlTagFinder table()
      Deprecated.
    • tables

      public static HtmlTagFinder tables()
      Deprecated.
    • cell

      public static HtmlTagFinder cell()
      Deprecated.
    • cells

      public static HtmlTagFinder cells()
      Deprecated.
    • imageButton

      public static HtmlTagFinder imageButton()
      Deprecated.
    • imageButton

      public static HtmlTagFinder imageButton(String label)
      Deprecated.
    • radioButton

      public static HtmlTagFinder radioButton()
      Deprecated.
    • radioButton

      public static HtmlTagFinder radioButton(String id)
      Deprecated.
    • textbox

      public static HtmlTagFinder textbox()
      Deprecated.
    • button

      public static HtmlTagFinder button()
      Deprecated.
    • button

      public static HtmlTagFinder button(String label)
      Deprecated.
    • first

      public static Finder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver> first(Finder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver> finder)
      Deprecated.
      A finder which returns the first element matched - such as if you have multiple elements which match the finder (such as multiple links with the same text on a page etc)
      Parameters:
      finder - finder from which context to search
      Returns:
      finder that will return the first match