* {{> appendField }}
(field, value, context = null)
| 1286 | * {{> appendField }} |
| 1287 | */ |
| 1288 | async appendField(field, value, context = null) { |
| 1289 | const res = await findFields.call(this, field, context) |
| 1290 | assertElementExists(res, field, 'Field') |
| 1291 | const elem = selectElement(res, field, this) |
| 1292 | highlightActiveElement.call(this, elem) |
| 1293 | return elem.addValue(value.toString()) |
| 1294 | } |
| 1295 | |
| 1296 | /** |
| 1297 | * {{> clearField }} |
nothing calls this directly
no test coverage detected