Interface Table

All Superinterfaces:
Clickable, DoubleClickable, EnabledProvider, LocationInfoProvider, SupportDragAndDrop, SupportSendKeys, SupportsNativeObject, TestObject, TestObjectDescriber, UiObjectBase, UiObjectBase, VisibleProvider, WaitUntilEnabledProvider, WaitUntilVisibleProvider

public interface Table extends UiObjectBase, TestObject
A .NET WPF grid object.
  • Method Details

    • getName

      String getName() throws GeneralLeanFtException
      Returns the name of this object.
      Returns:
      the name
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • activateCell

      void activateCell(int row, int column) throws GeneralLeanFtException
      Double-clicks the specified cell in this grid.
      Parameters:
      row - 0-based row index
      column - 0-based column index
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • activateCell

      void activateCell(int row, String columnHeader) throws GeneralLeanFtException
      Double-clicks the specified cell in this grid.
      Parameters:
      row - 0-based row index
      columnHeader - the column caption
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • extendSelect

      void extendSelect(int row) throws GeneralLeanFtException
      Selects an additional item from the multi-selection grid.
      The entire row you specify is selected (in addition to any currently selected rows and cells).
      Parameters:
      row - 0-based row index.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • extendSelect

      void extendSelect(int row, int column) throws GeneralLeanFtException
      Adds the specified cell to the collection of selected items in this multi-selection grid.
      Parameters:
      row - 0-based row index
      column - 0-based column index
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • extendSelect

      void extendSelect(int row, String columnHeader) throws GeneralLeanFtException
      Adds the specified cell to the collection of selected items in this multi-selection grid.
      Parameters:
      row - 0-based row index
      columnHeader - the column caption
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • selectCell

      void selectCell(int row, int column) throws GeneralLeanFtException
      Clicks the specified cell in this grid.
      Parameters:
      row - 0-based row index
      column - 0-based column index
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • selectCell

      void selectCell(int row, String columnHeader) throws GeneralLeanFtException
      Clicks the specified cell in this grid.
      Parameters:
      row - 0-based row index
      columnHeader - the column caption
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • selectColumn

      void selectColumn(int column) throws GeneralLeanFtException
      Selects (clicks) the specified column header in the grid.
      Parameters:
      column - 0-based column index.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • selectColumn

      void selectColumn(String columnHeader) throws GeneralLeanFtException
      Clicks the specified column header in this grid.
      Parameters:
      columnHeader - the column header name
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • selectRow

      void selectRow(int row) throws GeneralLeanFtException
      clicks the specified row in this grid.
      Parameters:
      row - 0-based row index
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • getCell

      TableCell getCell(int row, String columnHeader) throws GeneralLeanFtException
      Returns a cell specified by row index and column header.
      Parameters:
      row - 0-based row index.
      columnHeader - the column header.
      Returns:
      the TableCell
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • getRows

      Returns table rows.
      Returns:
      the rows
      Throws:
      GeneralLeanFtException - if error occurs during execution