Package com.aquima.web.ui
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
Modifier and TypeMethodDescriptiongetParser
(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
-
getPrinter
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
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.
-