* Checks if the editor is visible
()
| 352 | * Checks if the editor is visible |
| 353 | */ |
| 354 | async isEditorVisible() { |
| 355 | this.codeServer.logger.debug("Waiting for editor to be visible...") |
| 356 | // Make sure the editor actually loaded |
| 357 | await this.page.waitForSelector(this.editorSelector) |
| 358 | const visible = await this.page.isVisible(this.editorSelector) |
| 359 | |
| 360 | this.codeServer.logger.debug(`Editor is ${visible ? "not visible" : "visible"}!`) |
| 361 | |
| 362 | return visible |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * Checks if the test extension loaded |
no outgoing calls
no test coverage detected