* {{> appendField }} *
(field, value, context = null)
| 1623 | * |
| 1624 | */ |
| 1625 | async appendField(field, value, context = null) { |
| 1626 | const els = await findVisibleFields.call(this, field, context) |
| 1627 | assertElementExists(els, field, 'Field') |
| 1628 | const el = selectElement(els, field, this) |
| 1629 | highlightActiveElement.call(this, el, await this._getContext()) |
| 1630 | await el.press('End') |
| 1631 | await el.type(value.toString(), { delay: this.options.pressKeyDelay }) |
| 1632 | return this._waitForAction() |
| 1633 | } |
| 1634 | |
| 1635 | /** |
| 1636 | * {{> seeInField }} |
nothing calls this directly
no test coverage detected