(source, target, options)
| 96 | return convertToLocator(element).fill(text, options) |
| 97 | }, |
| 98 | dragAndDrop(source, target, options) { |
| 99 | const sourceLocator = convertToLocator(source) |
| 100 | const targetLocator = convertToLocator(target) |
| 101 | return sourceLocator.dropTo(targetLocator, options) |
| 102 | }, |
| 103 | |
| 104 | // testing-library user-event |
| 105 | type(element, text, options) { |
nothing calls this directly
no test coverage detected