* 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 label-value[s] map.
(selector: string, data: T)
| 373 | * @param data - Data to fill the form, as a label-value[s] map. |
| 374 | */ |
| 375 | fillFormByLabel<T extends Record<string, boolean | string | string[]>>(selector: string, data: T): Promise<Record<keyof T, string[]>>; |
| 376 | |
| 377 | /** |
| 378 | * Fills a `form` with a variable number of inputs and returns its actual filled state. |
no outgoing calls
no test coverage detected