2018-03-20 03:00:12 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. 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.
|
|
|
|
*/
|
|
|
|
|
2019-02-06 06:32:41 +00:00
|
|
|
module.exports.addTests = function({testRunner, expect, headless, puppeteer}) {
|
2018-03-20 03:00:12 +00:00
|
|
|
const {describe, xdescribe, fdescribe} = testRunner;
|
2019-02-06 06:32:41 +00:00
|
|
|
const {it, fit, xit, it_fails_ffox} = testRunner;
|
2018-03-20 03:00:12 +00:00
|
|
|
const {beforeAll, beforeEach, afterAll, afterEach} = testRunner;
|
|
|
|
|
2018-09-20 18:55:23 +00:00
|
|
|
describe('Browser.target', function() {
|
2019-02-06 06:32:41 +00:00
|
|
|
it_fails_ffox('should return browser target', async({browser}) => {
|
2018-09-20 18:55:23 +00:00
|
|
|
const target = browser.target();
|
|
|
|
expect(target.type()).toBe('browser');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
describe('Browser.process', function() {
|
|
|
|
it('should return child_process instance', async function({browser}) {
|
|
|
|
const process = await browser.process();
|
|
|
|
expect(process.pid).toBeGreaterThan(0);
|
2019-02-02 01:55:12 +00:00
|
|
|
});
|
2019-02-06 06:32:41 +00:00
|
|
|
it_fails_ffox('should not return child_process for remote browser', async function({browser}) {
|
2018-03-20 03:00:12 +00:00
|
|
|
const browserWSEndpoint = browser.wsEndpoint();
|
|
|
|
const remoteBrowser = await puppeteer.connect({browserWSEndpoint});
|
|
|
|
expect(remoteBrowser.process()).toBe(null);
|
|
|
|
await remoteBrowser.disconnect();
|
|
|
|
});
|
|
|
|
});
|
2018-04-09 21:49:02 +00:00
|
|
|
};
|