i'm starting to use scrapy with splash, and i was wondering if splash can handle multiple windows and popups. As an example i would like to use that lua script and try to obtain the google window's content
function main(splash)
assert(splash:go("http://stackoverflow.com/"))
assert(splash:runjs("window.open('http://www.google.com');"))
assert(splash:wait(5))
return {
?
}
end