Whether the input is readonly.
()
| 56 | |
| 57 | /** Whether the input is readonly. */ |
| 58 | async isReadonly(): Promise<boolean> { |
| 59 | return (await this.host()).getProperty<boolean>('readOnly'); |
| 60 | } |
| 61 | |
| 62 | /** Gets the value of the input. */ |
| 63 | async getValue(): Promise<string> { |
no test coverage detected