35 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-04-12 13:13:09 +02:00
import { expect, tap } from '@push.rocks/tapbundle';
2022-03-24 13:51:12 +01:00
import * as smartpuppeteer from '../ts/index.js';
2019-06-03 22:24:10 +02:00
2022-07-18 03:08:32 +02:00
tap.test('should use pipe', async (tools) => {
2019-11-15 18:59:29 +01:00
const headlessBrowser = await smartpuppeteer.getEnvAwareBrowserInstance({
2022-07-18 03:08:32 +02:00
forceNoSandbox: false,
2019-11-15 18:59:29 +01:00
});
2021-08-17 15:22:10 +02:00
const page = await headlessBrowser.newPage();
2022-07-18 03:08:32 +02:00
await page.goto('https://lossless.com');
console.log(await page.title());
expect(headlessBrowser.wsEndpoint()).toEqual('');
await headlessBrowser.close();
});
tap.test('should use websocket', async (tools) => {
const headlessBrowser = await smartpuppeteer.getEnvAwareBrowserInstance({
forceNoSandbox: false,
usePipe: false,
});
const page = await headlessBrowser.newPage();
await page.goto('https://lossless.com');
console.log(await page.title());
expect(headlessBrowser.wsEndpoint()).not.toEqual('');
2019-06-03 22:48:40 +02:00
await headlessBrowser.close();
2019-06-03 22:24:10 +02:00
});
2021-08-17 15:22:10 +02:00
tap.test('should get and stop an Incognito browser', async () => {
const incognitoInstance = new smartpuppeteer.IncognitoBrowser();
await incognitoInstance.start();
const page = await incognitoInstance.browser.newPage();
await incognitoInstance.stop();
2021-11-07 15:58:45 +01:00
});
2021-08-17 15:22:10 +02:00
2019-06-03 22:24:10 +02:00
tap.start();