We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea5e8d commit 9c4d5a6Copy full SHA for 9c4d5a6
test/e2e/models/CodeServer.ts
@@ -565,7 +565,10 @@ export class CodeServerPage {
565
// it, left click and open the context menu using Shift+F10 instead.
566
const el = await this.page.waitForSelector(selector)
567
await el.click({ button: "left" })
568
+ // WIP: just seeing if this is a timing issue
569
+ await new Promise((r) => setTimeout(r, 1000))
570
await this.page.keyboard.press("Shift+F10")
571
572
await this.page.waitForSelector(".context-view-block")
573
}
574
0 commit comments