Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

node.js - how to pass a variable to puppeteer page.$eval();

I declared a variable and I am trying to pass it into an eval but it does not get displayed. How can I properly pass a variable.

var now = moment().format('YYYY-MM-D');
await page.$eval('#middleContent_txtEndDate', el => el.value = now);

If I declare a variable inside the eval function it works:

var now = moment().format('YYYY-MM-D');
await page.$eval('#middleContent_txtEndDate', el => el.value = "it works");
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can pass aditional arguments, to $eval

const now = moment().format('YYYY-MM-D');

await page.$eval('#middleContent_txtEndDate', (el, now, foo) => {
   console.log(el, now, foo);
   return el.value = now;
}, now, 'foo');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...