
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
puppeteer-extra-plugin-auto-scroll
Advanced tools
A plugin for puppeteer-extra to auto scroll.
npm install puppeteer-extra-plugin-auto-scroll
# or
yarn add puppeteer-extra-plugin-auto-scroll
If this is your first puppeteer-extra plugin here's everything you need:
yarn add puppeteer puppeteer-extra puppeteer-extra-plugin-auto-scroll
# or
npm install puppeteer puppeteer-extra puppeteer-extra-plugin-auto-scroll
const puppeteer = require('puppeteer-extra');
const autoScrollPlugin = require('puppeteer-extra-plugin-auto-scroll');
puppeteer.use(autoScrollPlugin());
async function getPage(url) {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto(url);
await page.autoScroll();
let content = await page.content();
await browser.close();
return content;
}
Parameters of the autoScroll
function in order:
selector
Type String
Default: body
Required: false
distance
Type Number
Default: 100
Required: false
timeout
Type String
Default: 1000
Required: false
Download stats for this NPM package
puppeteer-extra-plugin-auto-scroll
is open source software licensed as MIT.
FAQs
A auto scroll plugin for puppeteer-extra
The npm package puppeteer-extra-plugin-auto-scroll receives a total of 15 weekly downloads. As such, puppeteer-extra-plugin-auto-scroll popularity was classified as not popular.
We found that puppeteer-extra-plugin-auto-scroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.