Gets the id of the input.
()
| 92 | |
| 93 | /** Gets the id of the input. */ |
| 94 | async getId(): Promise<string> { |
| 95 | // The input directive always assigns a unique id to the input in |
| 96 | // case no id has been explicitly specified. |
| 97 | return await (await this.host()).getProperty<string>('id'); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Focuses the input and returns a promise that indicates when the |
no outgoing calls
no test coverage detected