{
  "api_key": "YOUR_API_KEY",
  "url": "https://news.ycombinator.com",
  "sanitize": true,
  "real_browser": true,
  "merge_loops": true,
  "scenario" : [
    {
      "loop" : [
        { "wait_for": ".storylink" },
        { "execute": "parse" },
        { "execute_js": "document.querySelector('.morelink').click()" },
        { "wait": 0.1 }
      ],
      "iterations": 3, 
      "stop_condition": "document.querySelector('.storylink') == null"
    }
  ],
  "parse": {
    "posts": [
      {
        "_parent": ".athing",
        "url": ".storylink >> href",
        "rank": ".rank >> text",
        "site": ".sitestr >> text",
        "title": ".storylink >> text"
      }
    ]
  }
}