diff --git a/test/e2e/models/CodeServer.ts b/test/e2e/models/CodeServer.ts index 2a03f9770..d7f9a176c 100644 --- a/test/e2e/models/CodeServer.ts +++ b/test/e2e/models/CodeServer.ts @@ -559,13 +559,8 @@ export class CodeServerPage { * Open context menu on the specified selector. */ async openContextMenu(selector: string): Promise { - // Firefox appears to have an issue with right clicking to show the context - // menu. It seems to be related to VS Code trying to handle the clipboard - // although I am not sure why it presents in the file menu. To work around - // it, left click and open the context menu using Shift+F10 instead. const el = await this.page.waitForSelector(selector) - await el.click({ button: "left" }) - await this.page.keyboard.press("Shift+F10") + await el.click({ button: "right" }) await this.page.waitForSelector(".context-view-block") } diff --git a/test/playwright.config.ts b/test/playwright.config.ts index c555f0960..8692d4648 100644 --- a/test/playwright.config.ts +++ b/test/playwright.config.ts @@ -28,10 +28,11 @@ const config: PlaywrightTestConfig = { name: "Chromium", use: { browserName: "chromium" }, }, - { - name: "Firefox", - use: { browserName: "firefox" }, - }, + // Firefox seems to have bugs with opening context menus in the file tree. + // { + // name: "Firefox", + // use: { browserName: "firefox" }, + // }, { name: "WebKit", use: { browserName: "webkit" },