We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea5e8d commit f005242Copy full SHA for f005242
test/e2e/models/CodeServer.ts
@@ -564,8 +564,10 @@ export class CodeServerPage {
564
// although I am not sure why it presents in the file menu. To work around
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
- await this.page.keyboard.press("Shift+F10")
+ // WIP: just seeing if this is a timing issue
+ await new Promise((r) => setTimeout(r, 1000))
569
+ await el.click({ button: "right" })
570
571
await this.page.waitForSelector(".context-view-block")
572
}
573
0 commit comments