Scraperjs interaction with the page

Somebody uses https://github.com/ruipgil/scraperjs for scraping web pages? I can not understand how to interact with the page? How to get google search results. This should be done as a function of scrape() or before?

You should check out cheerio API. Scraperjs uses it for parsing. You can clarify here what do you wanna get from specific page and I will provide you with sample code.

Here is code for getting url from google query

var scraperjs = require('scraperjs')

scraperjs.StaticScraper
  .create('https://www.google.ru/search?q=scraperjs')
  .scrape(function($) {
    return $('li.g').map(function() {
      return $(this).find('a').first().attr('href')
    }).get();
  }, function(news) {
    news.forEach(function(elm) {
      console.log(elm);
    });
  });

~