()
| 28 | } |
| 29 | |
| 30 | async waitForProblemsView(): Promise<void> { |
| 31 | await this.code.waitForElement(Problems.PROBLEMS_VIEW_SELECTOR); |
| 32 | } |
| 33 | |
| 34 | static getSelectorInProblemsView(problemType: ProblemSeverity): string { |
| 35 | const selector = problemType === ProblemSeverity.WARNING ? 'codicon-warning' : 'codicon-error'; |