7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
module.exports = async function(page, url) {
|
|
await page.goto(url);
|
|
const element = await page.waitForSelector('b.price')
|
|
const value = await element.evaluate(el => el.textContent);
|
|
return Number(value)
|
|
}
|