Whether the step is selected.
()
| 63 | |
| 64 | /** Whether the step is selected. */ |
| 65 | async isSelected(): Promise<boolean> { |
| 66 | const host = await this.host(); |
| 67 | return ( |
| 68 | (await host.getAttribute('aria-selected')) === 'true' || |
| 69 | (await host.getAttribute('aria-current')) === 'step' |
| 70 | ); |
| 71 | } |
| 72 | |
| 73 | /** Whether the step has been filled out. */ |
| 74 | async isCompleted(): Promise<boolean> { |
no test coverage detected