smartpuppeteer/test/test.ts

20 lines
618 B
TypeScript
Raw Normal View History

2019-06-03 20:24:10 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2022-03-24 12:51:12 +00:00
import * as smartpuppeteer from '../ts/index.js';
2019-06-03 20:24:10 +00:00
2021-01-08 21:16:25 +00:00
tap.test('first test', async (tools) => {
2019-11-15 17:59:29 +00:00
const headlessBrowser = await smartpuppeteer.getEnvAwareBrowserInstance({
2021-01-08 21:16:25 +00:00
forceNoSandbox: true,
2019-11-15 17:59:29 +00:00
});
2021-08-17 13:22:10 +00:00
const page = await headlessBrowser.newPage();
2019-06-03 20:48:40 +00:00
await headlessBrowser.close();
2019-06-03 20:24:10 +00:00
});
2021-08-17 13:22:10 +00: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 14:58:45 +00:00
});
2021-08-17 13:22:10 +00:00
2019-06-03 20:24:10 +00:00
tap.start();