| // Licensed to the Software Freedom Conservancy (SFC) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The SFC licenses this file |
| // to you 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. |
| |
| 'use strict' |
| |
| const assert = require('node:assert') |
| const { Browser, until } = require('selenium-webdriver') |
| const fileServer = require('../lib/test/fileserver') |
| const { HttpResponse } = require('selenium-webdriver/devtools/networkinterceptor') |
| const { Pages, ignore, suite } = require('../lib/test') |
| |
| suite( |
| function (env) { |
| const browsers = (...args) => env.browsers(...args) |
| |
| let driver |
| |
| before(async function () { |
| driver = await env.builder().build() |
| }) |
| after(async () => await driver.quit()) |
| |
| ignore(browsers(Browser.CHROME)).it('sends Page.enable command using devtools', async function () { |
| const cdpConnection = await driver.createCDPConnection('page') |
| cdpConnection.execute('Page.enable', {}, function (_res, err) { |
| assert(!err) |
| }) |
| }) |
| |
| ignore(browsers(Browser.CHROME)).it('sends Network and Page command using devtools', async function () { |
| const cdpConnection = await driver.createCDPConnection('page') |
| cdpConnection.execute('Network.enable', {}, function (_res, err) { |
| assert(!err) |
| }) |
| |
| cdpConnection.execute('Page.navigate', { url: 'chrome://newtab/' }, function (_res, err) { |
| assert(!err) |
| }) |
| }) |
| |
| describe('JS CDP events', function () { |
| ignore(browsers(Browser.CHROME)).it('calls the event listener for console.log', async function () { |
| const cdpConnection = await driver.createCDPConnection('page') |
| await driver.onLogEvent(cdpConnection, function (event) { |
| assert.strictEqual(event['args'][0]['value'], 'here') |
| }) |
| await driver.executeScript('console.log("here")') |
| }) |
| |
| ignore(browsers(Browser.CHROME)).it('calls the event listener for js exceptions', async function () { |
| const cdpConnection = await driver.createCDPConnection('page') |
| await driver.onLogException(cdpConnection, function (event) { |
| assert.strictEqual(event['exceptionDetails']['stackTrace']['callFrames'][0]['functionName'], 'onmouseover') |
| }) |
| await driver.get(Pages.javascriptPage) |
| let element = driver.findElement({ id: 'throwing-mouseover' }) |
| await element.click() |
| }) |
| }) |
| |
| describe('JS DOM events', function () { |
| ignore(browsers(Browser.CHROME)).it('calls the event listener on dom mutations', async function () { |
| const cdpConnection = await driver.createCDPConnection('page') |
| await driver.logMutationEvents(cdpConnection, function (event) { |
| assert.strictEqual(event['attribute_name'], 'style') |
| assert.strictEqual(event['current_value'], '') |
| assert.strictEqual(event['old_value'], 'display:none;') |
| }) |
| |
| await driver.get(fileServer.Pages.dynamicPage) |
| |
| let element = driver.findElement({ id: 'reveal' }) |
| await element.click() |
| let revealed = driver.findElement({ id: 'revealed' }) |
| await driver.wait(until.elementIsVisible(revealed), 5000) |
| }) |
| }) |
| |
| describe('Basic Auth Injection', function () { |
| ignore(browsers(Browser.SAFARI, Browser.CHROME)).it( |
| 'denies entry if username and password do not match', |
| async function () { |
| const pageCdpConnection = await driver.createCDPConnection('page') |
| |
| await driver.register('random', 'random', pageCdpConnection) |
| await driver.get(fileServer.Pages.basicAuth) |
| let source = await driver.getPageSource() |
| assert.ok(!source.includes('Access granted!'), `The Source is \n ${source}`) |
| }, |
| ) |
| |
| ignore(browsers(Browser.SAFARI, Browser.CHROME)).it( |
| 'grants access if username and password are a match', |
| async function () { |
| const pageCdpConnection = await driver.createCDPConnection('page') |
| |
| await driver.register('genie', 'bottle', pageCdpConnection) |
| await driver.get(fileServer.Pages.basicAuth) |
| let source = await driver.getPageSource() |
| assert.strictEqual(source.includes('Access granted!'), true) |
| }, |
| ) |
| }) |
| |
| describe('Network Interception', function () { |
| ignore(browsers(Browser.SAFARI)).it('Allows network requests to be captured and mocked', async function () { |
| const connection = await driver.createCDPConnection('page') |
| let url = fileServer.whereIs('/cheese') |
| let httpResponse = new HttpResponse(url) |
| httpResponse.addHeaders('Content-Type', 'UTF-8') |
| httpResponse.body = 'sausages' |
| await driver.onIntercept(connection, httpResponse, async function () { |
| let body = await driver.getPageSource() |
| assert.strictEqual(body.includes('sausages'), true, `Body contains: ${body}`) |
| }) |
| await driver.get(url) |
| }) |
| }) |
| }, |
| { browsers: ['chrome'] }, |
| ) |