Gets the value of the input.
()
| 61 | |
| 62 | /** Gets the value of the input. */ |
| 63 | async getValue(): Promise<string> { |
| 64 | // The "value" property of the native input is never undefined. |
| 65 | return await (await this.host()).getProperty<string>('value'); |
| 66 | } |
| 67 | |
| 68 | /** Gets the name of the input. */ |
| 69 | async getName(): Promise<string> { |
no outgoing calls
no test coverage detected