Guest User

Untitled

a guest
Dec 11th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let products_page = await page.$$eval(
  2.     '[data]',
  3.     (divs, page) => divs.map( div => ({
  4. //  ^----^^^^^^
  5.         page
  6. //      ^^^^---- shorthand property notation
  7.       })
  8.     ), i
  9. //   ^^^--- pass in `i` as an argument for the page function
  10. );
Advertisement
Add Comment
Please, Sign In to add comment