* {{> clearField }} *
(field, context = null)
| 1298 | * |
| 1299 | */ |
| 1300 | async clearField(field, context = null) { |
| 1301 | const res = await findFields.call(this, field, context) |
| 1302 | assertElementExists(res, field, 'Field') |
| 1303 | const elem = selectElement(res, field, this) |
| 1304 | highlightActiveElement.call(this, elem) |
| 1305 | return elem.clearValue(getElementId(elem)) |
| 1306 | } |
| 1307 | |
| 1308 | /** |
| 1309 | * {{> selectOption }} |
nothing calls this directly
no test coverage detected