* Parse recipients from the Gmail Webmail interface * @return {Promise. } The recipient objects in the form { email: 'jon@example.com' }
(editElement)
| 91 | * @return {Promise.<Array>} The recipient objects in the form { email: 'jon@example.com' } |
| 92 | */ |
| 93 | async getRecipients(editElement) { |
| 94 | return getAttr(editElement.closest('.I5').querySelectorAll('.agb .afV[data-hovercard-id]'), 'data-hovercard-id'); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Set the recipients in the Gmail Webmail editor. |
no test coverage detected