Interface IRuntimeKeyMapper

All Known Implementing Classes:
IdentityRuntimeKeyMapper, ReadableRuntimeKeyMapper

public interface IRuntimeKeyMapper
Interface to convert runtime keys in page elements. For instance to support various test frameworks.
Since:
8.0
Author:
Jon van Leuven
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    getParser(com.aquima.interactions.composer.IPage page)
    This method returns a runtime key parser to convert a string to a runtime key.
    com.aquima.interactions.composer.IRuntimeKeyPrinter
    getPrinter(com.aquima.interactions.composer.IPage page)
    This method returns a runtime key printer to convert a runtime key to a string.
  • Method Details Link icon

    • getPrinter Link icon

      com.aquima.interactions.composer.IRuntimeKeyPrinter getPrinter(com.aquima.interactions.composer.IPage page)
      This method returns a runtime key printer to convert a runtime key to a string.
      Parameters:
      page - The page containing the elements with runtime keys.
      Returns:
      The runtime key printer, never null.
    • getParser Link icon

      IRuntimeKeyParser getParser(com.aquima.interactions.composer.IPage page)
      This method returns a runtime key parser to convert a string to a runtime key.
      Parameters:
      page - The page containing the elements with runtime keys.
      Returns:
      The runtime key parser, never null.