* Creates a new Locator object with CSS selector type. * * @param {string} value - The CSS selector value. * @returns {Locator} A new Locator object with CSS selector type.
(value)
| 54 | * @returns {Locator} A new Locator object with CSS selector type. |
| 55 | */ |
| 56 | static css(value) { |
| 57 | return new Locator(Locator.Type.CSS, value) |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Creates a new Locator object with the given XPath value. |
no outgoing calls
no test coverage detected