如何从puppeteer中的elementHandle中选择innerHTML

时间:2018-01-30 03:04:47

标签: javascript ecmascript-6

使用节点puppeteer模块,如何继续使用此代码来获取innerContent?

const els = Promise.all(await page.$$(selector)).then(results => {
    results.map(async el => {
      const tr = await el.$('tr')
      //How do I convert this element handle to get its innerText content?
         })
     })

1 个答案:

答案 0 :(得分:1)

textValue = tr.getProperty('innerText').jsonValue()