* Creates a new Locator object with the given XPath value. * * @param {string} value - The XPath value. * @returns {Locator} A new Locator object.
(value)
| 64 | * @returns {Locator} A new Locator object. |
| 65 | */ |
| 66 | static xpath(value) { |
| 67 | return new Locator(Locator.Type.XPATH, value) |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Creates a new Locator object with the specified inner text value. |
no outgoing calls
no test coverage detected