scrapy-splash
scrapy-splash copied to clipboard
Splash 如何执行 JSON.stringify(window.performance.timing)
function main(splash, args)
assert(splash:go(args.url))
assert(splash:wait(0.5))
local performance = splash:jsfunc([[
function () {
var divs = JSON.stringify(window.performance.timing);
return performance;
}
]])
return {
title = performance(),
har = splash:har(),
}
end
如果这样执行返回为空