Skip to content

[BUG] Dangling context menu after right-click on WebKit headless Windows #2699

@arjunattam

Description

@arjunattam

Context:

  • Playwright Version: 1.1.1
  • Operating System: Windows (works on Mac)
  • Node version: 12.18
  • Browser: Webkit

Code Snippet

const {webkit} = require('playwright');

(async () => {
    const browser = await webkit.launch({headless: true});
    const context = await browser.newContext();
    const page = await context.newPage();
    await page.goto("https://www.bing.com");
    await page.click("//*[@id='b_logo']", {button: 'right'});
    await browser.close();
})();

Since the execution is headless, no UI should be shown

Screen Shot 2020-06-24 at 7 13 07 PM

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions