-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'VE FIXED ALL THE BUGS / ERRORS. #106
Comments
Load page...
|
use : npm i @lem0-packages/puppeteer-page-proxy const puppeteer = require('puppeteer');
const useProxy = require("@lem0-packages/puppeteer-page-proxy");
(async () => {
const browser = await puppeteer.launch({
headless: false,
});
const page = await browser.newPage();
await page.setRequestInterception(true);
page.on('request', async (request) => {
await useProxy(request, 'http://TYPE_YOUR@PROXY_HERE:8000');
});
await page.goto('https://ipinfo.io');
})(); |
I fixed all the bugs on ‘src\core\proxy.js’.
Here: Pudochu@30bfe18
If you encounter some bugs, let me know here - I will fix them.
The text was updated successfully, but these errors were encountered: