* Fills a `form` with a variable number of inputs and returns its actual filled state. * * @param selector - Selector to query the `form` element for. * @param data - Data to fill the form, as a XPath selector-value[s] map.
(selector: string, data: T)
| 397 | * @param data - Data to fill the form, as a XPath selector-value[s] map. |
| 398 | */ |
| 399 | fillFormByXPath<T extends Record<string, boolean | string | string[]>>(selector: string, data: T): Promise<Record<keyof T, string[]>>; |
| 400 | |
| 401 | /** |
| 402 | * Returns normalized number(s) found in the given element. |
no outgoing calls
no test coverage detected