我开始使用scrapy with splash,我想知道splash是否可以处理多个窗口和弹出窗口。作为示例,我想使用该 lua 脚本并尝试获取 google 窗口的内容
function main(splash)
assert(splash:go("http://stackoverflow.com/"))
assert(splash:runjs("window.open('http://www.google.com');"))
assert(splash:wait(5))
return {
?
}
end