使用Headless Chrome从页面获取链接

时间:2018-01-04 09:21:59

标签: javascript google-chrome-headless

我是否可以使用headless chromeChrome DevTools Protocol从页面获取链接?

我试过Runtime.compileScript()&& Runtime.runScript()但这些方法只执行脚本而不返回响应...

const script = {
    expression: "document.links",
    sourceURL: "https://www.github.com",
    persistScript: true
}
const actionResponse = await Runtime.compileScript(script);
const result = await Runtime.runScript({scriptId: actionResponse.scriptId})

0 个答案:

没有答案