Skip to content

Commit

Permalink
test: add missing context-menu event spec for <webview> (electron#31280)
Browse files Browse the repository at this point in the history
  • Loading branch information
miniak authored and t57ser committed Oct 27, 2021
1 parent b739ffb commit 06541d5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions spec/webview-spec.js
Expand Up @@ -996,6 +996,26 @@ describe('<webview> tag', function () {
});
});

describe('context-menu event', () => {
it('emits when right-clicked in page', async () => {
await loadWebView(webview, { src: 'about:blank' });

const promise = waitForEvent(webview, 'context-menu');

// Simulate right-click to create context-menu event.
const opts = { x: 0, y: 0, button: 'right' };
webview.sendInputEvent({ ...opts, type: 'mouseDown' });
webview.sendInputEvent({ ...opts, type: 'mouseUp' });

const { params } = await promise;

expect(params.pageURL).to.equal(webview.getURL());
expect(params.frame).to.be.undefined();
expect(params.x).to.be.a('number');
expect(params.y).to.be.a('number');
});
});

describe('media-started-playing media-paused events', () => {
beforeEach(function () {
if (!document.createElement('audio').canPlayType('audio/wav')) {
Expand Down

0 comments on commit 06541d5

Please sign in to comment.