Compare commits
83 Commits
Author | SHA1 | Date | |
---|---|---|---|
4945b8f669 | |||
2715cc8853 | |||
2c3077a3d7 | |||
6ef281c871 | |||
1839c56130 | |||
229e35c9da | |||
57776a67b3 | |||
8809b9755b | |||
1138897da2 | |||
831f967960 | |||
fc602235cf | |||
775f2bde13 | |||
3c436b7167 | |||
e955876a7c | |||
b6472f38e2 | |||
d4232decdd | |||
76999d8720 | |||
407ccf66b9 | |||
72e6ef04cb | |||
d3732dcecc | |||
a10b42270c | |||
b2efe28f4d | |||
1ab34d909b | |||
09a8888d47 | |||
243beb2c75 | |||
c6fd1bea7a | |||
4f94fa31ac | |||
ac61d8ff4d | |||
107178e9e7 | |||
0b5c030d5d | |||
94f145c3dc | |||
ebd60756ea | |||
8305dd105c | |||
797cac672b | |||
4b1f058a21 | |||
c38f338f8e | |||
103c7eb11e | |||
0190f1bb77 | |||
87d7460183 | |||
ed1522062e | |||
116f700d5c | |||
366a033904 | |||
5f1f4b3c53 | |||
255bd7046e | |||
bb82845f27 | |||
8ec23ba414 | |||
937605f8c1 | |||
f05c2226c5 | |||
1d2eca0991 | |||
c91f77a0d4 | |||
d94826a7b7 | |||
636f0580c6 | |||
aa5552ce3a | |||
3ef298215a | |||
23c65e23ae | |||
ef55253b8e | |||
1b72af4702 | |||
44314c9894 | |||
35129df11c | |||
5dd6450347 | |||
190d57bbe2 | |||
8d4519d615 | |||
42a68434c0 | |||
35fd4678d1 | |||
01a4122529 | |||
fbb94fe51e | |||
656e21c8fd | |||
53b5cca687 | |||
25d191a95b | |||
d5b3e48f8d | |||
dd6f24551d | |||
f4d0e9ad87 | |||
41aefa7f18 | |||
c9f42b4c66 | |||
0645364ca9 | |||
2d3f59cc65 | |||
0e9c81b898 | |||
64cd7cd75d | |||
f110320dae | |||
cbc7fcb323 | |||
0dc0e6ad53 | |||
a76d7439c4 | |||
df0b48cc47 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -15,8 +15,6 @@ node_modules/
|
||||
|
||||
# builds
|
||||
dist/
|
||||
dist_web/
|
||||
dist_serve/
|
||||
dist_ts_web/
|
||||
dist_*/
|
||||
|
||||
# custom
|
130
.gitlab-ci.yml
130
.gitlab-ci.yml
@ -1,16 +1,19 @@
|
||||
# gitzone standard
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
# gitzone ci_default
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .npmci_cache/
|
||||
key: "$CI_BUILD_STAGE"
|
||||
- .npmci_cache/
|
||||
key: '$CI_BUILD_STAGE'
|
||||
|
||||
stages:
|
||||
- security
|
||||
- test
|
||||
- release
|
||||
- metadata
|
||||
- security
|
||||
- test
|
||||
- release
|
||||
- metadata
|
||||
|
||||
before_script:
|
||||
- npm install -g @shipzone/npmci
|
||||
|
||||
# ====================
|
||||
# security stage
|
||||
@ -18,102 +21,115 @@ stages:
|
||||
mirror:
|
||||
stage: security
|
||||
script:
|
||||
- npmci git mirror
|
||||
- npmci git mirror
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
snyk:
|
||||
auditProductionDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci command npm install -g snyk
|
||||
- npmci command npm install --ignore-scripts
|
||||
- npmci command snyk test
|
||||
- npmci command npm install --production --ignore-scripts
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=prod --production
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
auditDevDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --ignore-scripts
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=dev
|
||||
tags:
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
# ====================
|
||||
# test stage
|
||||
# ====================
|
||||
|
||||
testLTS:
|
||||
testStable:
|
||||
stage: test
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci node install lts
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
testSTABLE:
|
||||
- docker
|
||||
|
||||
testBuild:
|
||||
stage: test
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci command npm run build
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- docker
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm publish
|
||||
- npmci node install stable
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
# ====================
|
||||
# metadata stage
|
||||
# ====================
|
||||
codequality:
|
||||
stage: metadata
|
||||
image: docker:stable
|
||||
allow_failure: true
|
||||
services:
|
||||
- docker:stable-dind
|
||||
only:
|
||||
- tags
|
||||
script:
|
||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
||||
- docker run
|
||||
--env SOURCE_CODE="$PWD"
|
||||
--volume "$PWD":/code
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
||||
artifacts:
|
||||
paths: [codeclimate.json]
|
||||
- npmci command npm install -g tslint typescript
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||
tags:
|
||||
- docker
|
||||
- priv
|
||||
- lossless
|
||||
- docker
|
||||
- priv
|
||||
|
||||
trigger:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci trigger
|
||||
- npmci trigger
|
||||
only:
|
||||
- tags
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
pages:
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci command npm install -g @gitzone/tsdoc
|
||||
- npmci node install lts
|
||||
- npmci command npm install -g @git.zone/tsdoc
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command tsdoc
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
only:
|
||||
@ -121,5 +137,5 @@ pages:
|
||||
artifacts:
|
||||
expire_in: 1 week
|
||||
paths:
|
||||
- public
|
||||
- public
|
||||
allow_failure: true
|
||||
|
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "npm test",
|
||||
"name": "Run npm test",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"json.schemas": [
|
||||
{
|
||||
"fileMatch": ["/npmextra.json"],
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"npmci": {
|
||||
"type": "object",
|
||||
"description": "settings for npmci"
|
||||
},
|
||||
"gitzone": {
|
||||
"type": "object",
|
||||
"description": "settings for gitzone",
|
||||
"properties": {
|
||||
"projectType": {
|
||||
"type": "string",
|
||||
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
33
changelog.md
Normal file
33
changelog.md
Normal file
@ -0,0 +1,33 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-02-25 - 2.0.5 - fix(dependencies)
|
||||
Update dependencies including Puppeteer and node types.
|
||||
|
||||
- Updated Puppeteer version from ^22.6.4 to ^24.3.0.
|
||||
- Updated @types/node version from ^20.12.7 to ^22.13.5.
|
||||
|
||||
## 2025-02-25 - 2.0.4 - fix(IncognitoBrowser)
|
||||
Enhance IncognitoBrowser error handling and process management
|
||||
|
||||
- Improve error handling during browser disconnection and process management.
|
||||
- Ensure safe re-launch of the browser if it disconnects while the status is 'started'.
|
||||
- Add logging for critical operations like launching without sandbox.
|
||||
|
||||
## 2024-04-12 to 2024-05-29 - 2.0.3 - Minor Updates
|
||||
Various minor updates and configuration changes were made during this period.
|
||||
|
||||
- Updated project description.
|
||||
- Updated TypeScript configuration.
|
||||
|
||||
## 2023-07-10 to 2024-04-12 - 2.0.2 - Organizational and Configuration Updates
|
||||
This release cycle focused on organizational changes and configuration updates.
|
||||
|
||||
- Switched to new organization scheme.
|
||||
- Updated `npmextra.json` to include new git host information.
|
||||
- Made updates to TypeScript configuration.
|
||||
|
||||
## 2022-03-24 to 2022-07-18 - 2.0.0 to 2.0.1 - Core Updates and Fixes
|
||||
During these versions, significant internal changes were made with continued improvements.
|
||||
|
||||
- **BREAKING CHANGE:** Switched to ECMAScript Modules (ESM) format.
|
||||
- Multiple fixes in the core module, enhancing stability.
|
@ -1,17 +1,31 @@
|
||||
{
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "gitlab.com",
|
||||
"gitscope": "pushrocks",
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "push.rocks",
|
||||
"gitrepo": "smartpuppeteer",
|
||||
"shortDescription": "simplified access to puppeteer",
|
||||
"npmPackagename": "@pushrocks/smartpuppeteer",
|
||||
"npmPackagename": "@push.rocks/smartpuppeteer",
|
||||
"license": "MIT",
|
||||
"projectDomain": "push.rocks"
|
||||
"projectDomain": "push.rocks",
|
||||
"description": "Provides simplified access to Puppeteer for automation and testing purposes.",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
"automation",
|
||||
"browser automation",
|
||||
"web scraping",
|
||||
"testing",
|
||||
"headless browsing",
|
||||
"incognito browsing"
|
||||
]
|
||||
}
|
||||
},
|
||||
"npmci": {
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||
}
|
||||
}
|
11454
package-lock.json
generated
11454
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
65
package.json
65
package.json
@ -1,34 +1,57 @@
|
||||
{
|
||||
"name": "@pushrocks/smartpuppeteer",
|
||||
"version": "1.0.2",
|
||||
"name": "@push.rocks/smartpuppeteer",
|
||||
"version": "2.0.5",
|
||||
"private": false,
|
||||
"description": "simplified access to puppeteer",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"description": "Provides simplified access to Puppeteer for automation and testing purposes.",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
"author": "Lossless GmbH",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild)",
|
||||
"format": "(gitzone format)"
|
||||
"test": "tstest test/",
|
||||
"build": "tsbuild --web --allowimplicitany"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.0.22",
|
||||
"@gitzone/tstest": "^1.0.15",
|
||||
"@pushrocks/tapbundle": "^3.0.7",
|
||||
"@types/node": "^10.11.7",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint-config-prettier": "^1.15.0"
|
||||
"@git.zone/tsbuild": "^2.1.63",
|
||||
"@git.zone/tsrun": "^1.2.46",
|
||||
"@git.zone/tstest": "^1.0.71",
|
||||
"@push.rocks/tapbundle": "^5.0.8",
|
||||
"@types/node": "^22.13.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"@push.rocks/smartdelay": "^3.0.1",
|
||||
"@push.rocks/smartshell": "^3.0.3",
|
||||
"puppeteer": "^24.3.0",
|
||||
"tree-kill": "^1.2.2"
|
||||
},
|
||||
"dependencies": {},
|
||||
"files": [
|
||||
"ts/*",
|
||||
"ts_web/*",
|
||||
"dist/*",
|
||||
"dist_web/*",
|
||||
"assets/*",
|
||||
"ts/**/*",
|
||||
"ts_web/**/*",
|
||||
"dist/**/*",
|
||||
"dist_*/**/*",
|
||||
"dist_ts/**/*",
|
||||
"dist_ts_web/**/*",
|
||||
"assets/**/*",
|
||||
"cli.js",
|
||||
"npmextra.json",
|
||||
"readme.md"
|
||||
]
|
||||
],
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
],
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
"automation",
|
||||
"browser automation",
|
||||
"web scraping",
|
||||
"testing",
|
||||
"headless browsing",
|
||||
"incognito browsing"
|
||||
],
|
||||
"homepage": "https://code.foss.global/push.rocks/smartpuppeteer",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://code.foss.global/push.rocks/smartpuppeteer.git"
|
||||
}
|
||||
}
|
||||
|
10110
pnpm-lock.yaml
generated
Normal file
10110
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
143
readme.md
143
readme.md
@ -1,26 +1,133 @@
|
||||
# @pushrocks/smartpuppeteer
|
||||
# @push.rocks/smartpuppeteer
|
||||
simplified access to puppeteer
|
||||
|
||||
## Availabililty and Links
|
||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartpuppeteer)
|
||||
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartpuppeteer)
|
||||
* [github.com (source mirror)](https://github.com/pushrocks/smartpuppeteer)
|
||||
* [docs (typedoc)](https://pushrocks.gitlab.io/smartpuppeteer/)
|
||||
## Install
|
||||
To install `@push.rocks/smartpuppeteer` in your project, run the following command using npm:
|
||||
|
||||
## Status for master
|
||||
[](https://gitlab.com/pushrocks/smartpuppeteer/commits/master)
|
||||
[](https://gitlab.com/pushrocks/smartpuppeteer/commits/master)
|
||||
[](https://www.npmjs.com/package/@pushrocks/smartpuppeteer)
|
||||
[](https://snyk.io/test/npm/@pushrocks/smartpuppeteer)
|
||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
[](https://prettier.io/)
|
||||
```sh
|
||||
npm install @push.rocks/smartpuppeteer --save
|
||||
```
|
||||
|
||||
Or using yarn:
|
||||
|
||||
```sh
|
||||
yarn add @push.rocks/smartpuppeteer
|
||||
```
|
||||
|
||||
## Usage
|
||||
`@push.rocks/smartpuppeteer` simplifies interaction with Puppeteer, providing easier ways to launch Puppeteer instances considering environment constraints, such as running in a CI pipeline or as root, which necessitates certain flags for Chrome.
|
||||
|
||||
For further information read the linked docs at the top of this readme.
|
||||
Here, we give a comprehensive guide to using `@push.rocks/smartpuppeteer` in various scenarios, using ESM syntax and TypeScript.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||
### Basic Setup
|
||||
Firstly, let’s set up the basic environment for using `@push.rocks/smartpuppeteer`:
|
||||
|
||||
[](https://maintainedby.lossless.com)
|
||||
```typescript
|
||||
import { getEnvAwareBrowserInstance, IncognitoBrowser, puppeteer } from '@push.rocks/smartpuppeteer';
|
||||
|
||||
// Usually, you would initialize the browser instance at the start of your script or application logic
|
||||
const initializeBrowser = async () => {
|
||||
const browser = await getEnvAwareBrowserInstance({
|
||||
forceNoSandbox: true, // A flag useful for certain environments; use it with caution
|
||||
});
|
||||
return browser;
|
||||
};
|
||||
```
|
||||
|
||||
### Opening a Page and Navigating
|
||||
After obtaining a browser instance, you commonly want to open a page and navigate to a URL:
|
||||
|
||||
```typescript
|
||||
const openPage = async (browser: puppeteer.Browser) => {
|
||||
const page = await browser.newPage();
|
||||
await page.goto('https://www.example.com');
|
||||
const pageTitle = await page.title();
|
||||
console.log(`Page title: ${pageTitle}`);
|
||||
// Always close the browser after you are done to free resources
|
||||
await browser.close();
|
||||
};
|
||||
|
||||
// Utilize the async function
|
||||
initializeBrowser()
|
||||
.then(openPage)
|
||||
.catch(console.error);
|
||||
```
|
||||
|
||||
### Using Incognito Mode for Isolated Sessions
|
||||
`@push.rocks/smartpuppeteer` offers easy management of incognito sessions, allowing isolated environments within the same browser instance:
|
||||
|
||||
```typescript
|
||||
const useIncognitoBrowser = async () => {
|
||||
const incognitoBrowser = new IncognitoBrowser();
|
||||
await incognitoBrowser.start(); // Initializes a new incognito browser instance
|
||||
const context = await incognitoBrowser.getNewIncognitoContext();
|
||||
const page = await context.newPage();
|
||||
await page.goto('https://www.privacyfocusedsite.com');
|
||||
// Perform actions in the isolated session
|
||||
// Tidy up
|
||||
await incognitoBrowser.stop(); // Stops the incognito browser and closes all its pages and contexts
|
||||
};
|
||||
|
||||
useIncognitoBrowser()
|
||||
.then(() => console.log('Incognito session used successfully'))
|
||||
.catch(console.error);
|
||||
```
|
||||
|
||||
### Advanced Configuration
|
||||
`@push.rocks/smartpuppeteer` allows further customization for launching the Puppeteer browser, such as disabling the sandbox environment (not recommended for production).
|
||||
|
||||
### Handling Browser Events
|
||||
It's important to handle browser events, such as disconnections, which might occur due to various reasons:
|
||||
|
||||
```typescript
|
||||
const browserWithEventHandling = async () => {
|
||||
const browser = await getEnvAwareBrowserInstance();
|
||||
browser.on('disconnected', () => {
|
||||
console.log('Browser disconnected. Handling reconnection...');
|
||||
// Implement reconnection logic here
|
||||
});
|
||||
// Utilize the browser for tasks
|
||||
};
|
||||
|
||||
browserWithEventHandling()
|
||||
.then(() => console.log('Handled browser events successfully'))
|
||||
.catch(console.error);
|
||||
```
|
||||
|
||||
### Rotation of Browsers and Pages
|
||||
In scenarios such as web scraping or automated testing, you might want to rotate between browser instances or pages to manage memory usage or simulate new sessions:
|
||||
|
||||
```typescript
|
||||
const rotateBrowserInstances = async (incognitoBrowser: IncognitoBrowser) => {
|
||||
// Assuming incognitoBrowser is already initialized and started
|
||||
await incognitoBrowser.rotateBrowser(); // Closes the current browser and starts a new instance
|
||||
// Now you have a fresh browser instance
|
||||
};
|
||||
|
||||
// Example usage
|
||||
const incognitoBrowser = new IncognitoBrowser();
|
||||
incognitoBrowser.start()
|
||||
.then(() => rotateBrowserInstances(incognitoBrowser))
|
||||
.catch(console.error);
|
||||
```
|
||||
|
||||
`@push.rocks/smartpuppeteer` with its encapsulated features and simplified API provides an efficient way to harness the power of Puppeteer without getting bogged down by its complexities. Whether you are handling web scraping, automated testing, or any task requiring browser automation, `@push.rocks/smartpuppeteer` streamlines the process, making it more accessible and manageable even for those new to Puppeteer.
|
||||
|
||||
## License and Legal Information
|
||||
|
||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||
|
||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||
|
||||
### Trademarks
|
||||
|
||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
||||
|
34
test/test.ts
34
test/test.ts
@ -1,8 +1,34 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartpuppeteer from '../ts/index';
|
||||
import { expect, tap } from '@push.rocks/tapbundle';
|
||||
import * as smartpuppeteer from '../ts/index.js';
|
||||
|
||||
tap.test('first test', async () => {
|
||||
console.log(smartpuppeteer.standardExport);
|
||||
tap.test('should use pipe', async (tools) => {
|
||||
const headlessBrowser = await smartpuppeteer.getEnvAwareBrowserInstance({
|
||||
forceNoSandbox: false,
|
||||
});
|
||||
const page = await headlessBrowser.newPage();
|
||||
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('');
|
||||
await headlessBrowser.close();
|
||||
});
|
||||
|
||||
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();
|
||||
});
|
||||
|
||||
tap.start();
|
||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartpuppeteer',
|
||||
version: '2.0.5',
|
||||
description: 'Provides simplified access to Puppeteer for automation and testing purposes.'
|
||||
}
|
@ -1,3 +1,8 @@
|
||||
import * as plugins from './smartpuppeteer.plugins';
|
||||
// module exports
|
||||
|
||||
export let standardExport = 'Hi there! :) This is an exported string';
|
||||
export * from './smartpuppeteer.classes.smartpuppeteer.js';
|
||||
export * from './smartpuppeteer.classes.incognitobrowser.js';
|
||||
|
||||
// direct exports
|
||||
import { puppeteer } from './smartpuppeteer.plugins.js';
|
||||
export { puppeteer };
|
||||
|
68
ts/smartpuppeteer.classes.incognitobrowser.ts
Normal file
68
ts/smartpuppeteer.classes.incognitobrowser.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { getEnvAwareBrowserInstance } from './smartpuppeteer.classes.smartpuppeteer.js';
|
||||
import * as plugins from './smartpuppeteer.plugins.js';
|
||||
|
||||
export class IncognitoBrowser {
|
||||
public status: 'started' | 'stopped' = 'stopped';
|
||||
public browser!: plugins.puppeteer.Browser;
|
||||
|
||||
constructor() {}
|
||||
|
||||
/**
|
||||
* Starts the IncognitoBrowser instance.
|
||||
* It launches the browser using environment-aware options and sets up a listener
|
||||
* to automatically re-launch if the browser disconnects while the status is 'started'.
|
||||
*/
|
||||
public async start(): Promise<void> {
|
||||
this.status = 'started';
|
||||
this.browser = await getEnvAwareBrowserInstance();
|
||||
this.browser.on('disconnected', async () => {
|
||||
try {
|
||||
this.browser.removeAllListeners();
|
||||
} catch (err) {
|
||||
// Optionally handle the error.
|
||||
}
|
||||
if (this.status === 'started') {
|
||||
this.browser = await getEnvAwareBrowserInstance();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Stops the IncognitoBrowser instance.
|
||||
* It forcefully kills the browser process (if needed) and then closes the browser.
|
||||
*/
|
||||
public async stop(): Promise<void> {
|
||||
this.status = 'stopped';
|
||||
const pid = this.browser.process()?.pid;
|
||||
if (pid) {
|
||||
plugins.treeKill(pid, 'SIGKILL');
|
||||
}
|
||||
await this.browser.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotates the browser instance.
|
||||
* It closes the current browser and launches a new one.
|
||||
*/
|
||||
public async rotateBrowser(): Promise<void> {
|
||||
try {
|
||||
await this.browser.close();
|
||||
} catch (err) {
|
||||
// Ignore errors if the browser is already closed.
|
||||
}
|
||||
this.browser = await getEnvAwareBrowserInstance();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a new incognito browser context.
|
||||
* This uses Puppeteer's createIncognitoBrowserContext() API, which is the
|
||||
* correct method for creating isolated sessions.
|
||||
*/
|
||||
public async getNewIncognitoContext(): Promise<plugins.puppeteer.BrowserContext> {
|
||||
if (!this.browser) {
|
||||
throw new Error('You need to start the IncognitoBrowser instance first');
|
||||
}
|
||||
// @ts-ignore
|
||||
return this.browser.createIncognitoBrowserContext();
|
||||
}
|
||||
}
|
52
ts/smartpuppeteer.classes.smartpuppeteer.ts
Normal file
52
ts/smartpuppeteer.classes.smartpuppeteer.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import * as plugins from './smartpuppeteer.plugins.js';
|
||||
|
||||
export interface IEnvAwareOptions {
|
||||
forceNoSandbox?: boolean;
|
||||
usePipe?: boolean;
|
||||
}
|
||||
|
||||
export const getEnvAwareBrowserInstance = async (
|
||||
optionsArg: IEnvAwareOptions = {}
|
||||
): Promise<plugins.puppeteer.Browser> => {
|
||||
const options: IEnvAwareOptions = {
|
||||
forceNoSandbox: false,
|
||||
...optionsArg,
|
||||
};
|
||||
|
||||
let chromeArgs: string[] = [];
|
||||
if (
|
||||
process.env.CI ||
|
||||
options.forceNoSandbox ||
|
||||
plugins.os.userInfo().username === 'root'
|
||||
) {
|
||||
chromeArgs = chromeArgs.concat(['--no-sandbox', '--disable-setuid-sandbox']);
|
||||
console.warn('********************************************************');
|
||||
console.warn('WARNING: Launching browser without sandbox. This can be insecure!');
|
||||
console.warn('********************************************************');
|
||||
}
|
||||
|
||||
// Automatically choose an executable if available: prefer google-chrome, then chromium, then chromium-browser.
|
||||
const execPath =
|
||||
plugins.smartshell.which.sync('google-chrome') ||
|
||||
plugins.smartshell.which.sync('chromium') ||
|
||||
plugins.smartshell.which.sync('chromium-browser');
|
||||
|
||||
const executablePathOptions = execPath ? { executablePath: execPath } : {};
|
||||
|
||||
console.log('Launching puppeteer browser with arguments:');
|
||||
console.log(chromeArgs);
|
||||
if (execPath) {
|
||||
console.log(`Using executable: ${execPath}`);
|
||||
} else {
|
||||
console.log('No specific browser executable found; falling back to Puppeteer default.');
|
||||
}
|
||||
|
||||
const headlessBrowser = await plugins.puppeteer.launch({
|
||||
args: chromeArgs,
|
||||
pipe: options.usePipe !== undefined ? options.usePipe : true,
|
||||
headless: true,
|
||||
...executablePathOptions,
|
||||
});
|
||||
|
||||
return headlessBrowser;
|
||||
};
|
@ -1,2 +1,16 @@
|
||||
const removeme = {};
|
||||
export { removeme };
|
||||
// node native scope
|
||||
import * as os from 'os';
|
||||
|
||||
export { os };
|
||||
|
||||
// @pushrocks scope
|
||||
import * as smartdelay from '@push.rocks/smartdelay';
|
||||
import * as smartshell from '@push.rocks/smartshell';
|
||||
|
||||
export { smartdelay, smartshell };
|
||||
|
||||
// third party scope
|
||||
import puppeteer from 'puppeteer';
|
||||
import treeKill from 'tree-kill';
|
||||
|
||||
export { puppeteer, treeKill };
|
||||
|
14
tsconfig.json
Normal file
14
tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
17
tslint.json
17
tslint.json
@ -1,17 +0,0 @@
|
||||
{
|
||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||
"rules": {
|
||||
"semicolon": [true, "always"],
|
||||
"no-console": false,
|
||||
"ordered-imports": false,
|
||||
"object-literal-sort-keys": false,
|
||||
"member-ordering": {
|
||||
"options":{
|
||||
"order": [
|
||||
"static-method"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"defaultSeverity": "warning"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user