Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let products_page = await page.$$eval(
- '[data]',
- (divs, page) => divs.map( div => ({
- // ^----^^^^^^
- page
- // ^^^^---- shorthand property notation
- })
- ), i
- // ^^^--- pass in `i` as an argument for the page function
- );
Advertisement
Add Comment
Please, Sign In to add comment