()
| 42 | } |
| 43 | |
| 44 | async waitForQuickInputClosed(): Promise<void> { |
| 45 | await this.code.waitForElement(QuickInput.QUICK_INPUT, r => !!r && r.attributes.style.indexOf('display: none;') !== -1); |
| 46 | } |
| 47 | |
| 48 | async selectQuickInputElement(index: number, keepOpen?: boolean): Promise<void> { |
| 49 | await this.waitForQuickInputOpened(); |
no test coverage detected