There are lots of libraries out there to scrape information from web pages. Some of them which I had a look are:
- http://phantomjs.org/
- http://webdriver.io/
- http://casperjs.org/
- http://www.nightmarejs.org/
- http://codecept.io/
- https://data-miner.io
- http://chaijs.com/
Surprisingly, none of them provide a way to scrape a popup window. Even if they do, I couldn't figure out how it's done. The scenario is something like this:
-Visit a url (example.com)
-Fill login form
-Click login button
...and now, webpage opens a popup (an actual browser window) which I need to scrape.
Any suggestions or workarounds for popups?