(
context,
selector,
text,
options = {},
)
| 3 | import { getDescribedLocator } from './utils' |
| 4 | |
| 5 | export const fill: UserEventCommand<UserEvent['fill']> = async ( |
| 6 | context, |
| 7 | selector, |
| 8 | text, |
| 9 | options = {}, |
| 10 | ) => { |
| 11 | const element = getDescribedLocator(context, selector) |
| 12 | await element.fill(text, options) |
| 13 | } |
nothing calls this directly
no test coverage detected