/**
 * Copyright Microsoft Corporation. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
const utils = require('./utils');
const {FFOX, CHROMIUM, WEBKIT, WIN, USES_HOOKS} = testOptions;
describe('Page.dispatchEvent(click)', function() {
  it('should dispatch click event', async({page, server}) => {
    await page.goto(server.PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    expect(await page.evaluate(() => result)).toBe('Clicked');
  });
  it('should dispatch click event properties', async({page, server}) => {
    await page.goto(server.PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    expect(await page.evaluate(() => bubbles)).toBeTruthy();
    expect(await page.evaluate(() => cancelable)).toBeTruthy();
    expect(await page.evaluate(() => composed)).toBeTruthy();
  });
  it('should dispatch click svg', async({page, server}) => {
    await page.setContent(`
      
    `);
    await page.dispatchEvent('circle', 'click');
    expect(await page.evaluate(() => window.__CLICKED)).toBe(42);
  });
  it('should dispatch click on a span with an inline element inside', async({page, server}) => {
    await page.setContent(`
      
      
    `);
    await page.dispatchEvent('span', 'click');
    expect(await page.evaluate(() => window.CLICKED)).toBe(42);
  });
  it('should dispatch click after navigation ', async({page, server}) => {
    await page.goto(server.PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    await page.goto(server.PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    expect(await page.evaluate(() => result)).toBe('Clicked');
  });
  it('should dispatch click after a cross origin navigation ', async({page, server}) => {
    await page.goto(server.PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    await page.goto(server.CROSS_PROCESS_PREFIX + '/input/button.html');
    await page.dispatchEvent('button', 'click');
    expect(await page.evaluate(() => result)).toBe('Clicked');
  });
  it('should not fail when element is blocked on hover', async({page, server}) => {
    await page.setContent(`