Class TableQuery.Builder

java.lang.Object
jp.co.moneyforward.autotest.actions.web.TableQuery.Builder
Enclosing class:
TableQuery

public static class TableQuery.Builder extends Object
A builder class for TableQuery.
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • from

      public TableQuery.Builder from(String tableName)
      A table name on which the query will be performed.
      Parameters:
      tableName - A locator string of the table.
      Returns:
      This object.
    • where

      public TableQuery.Builder where(TableQuery.Term... terms)
      Parameters:
      terms - Conditions with which querying
      Returns:
      This object
      See Also:
    • normalizeWith

      public TableQuery.Builder normalizeWith(BinaryOperator<List<com.microsoft.playwright.Locator>> normalizer)
      Parameters:
      normalizer - A function that normalizes incomplete row.
      Returns:
      This object
    • build

      public TableQuery build()
      Builds a TableQuery object from the current field values held by this object.
      Returns:
      A TableQuery object.
    • $

      public TableQuery $()
      A shorthand method ob build().
      Returns:
      A built TableQuery object.