Interface CustomLocator

All Known Implementing Classes:
RelativeLocatorServerSide

public interface CustomLocator
Allows servers to add additional locator strategies to the Selenium Server. This takes the JSON payload of the Find Element command (essentially {"using": "locator-name", "value": "arguments"}) and calls it in the context of the server.
  • Method Details

    • getLocatorName

      String getLocatorName()
      Returns:
      The locator name, which is the value of the using property of the JSON payload.
    • createBy

      By createBy(Object usingParameter)