Interface CustomLocator


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 Summary

    Modifier and Type
    Method
    Description
    org.openqa.selenium.By
    createBy(Object usingParameter)
     
     
  • Method Details

    • getLocatorName

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

      org.openqa.selenium.By createBy(Object usingParameter)