AOEpeople/puppeteer-fetchbot

Name: puppeteer-fetchbot

Owner: AOE

Description: Library and Shell command that provides a simple JSON-API to perform human like interactions and data extractions on any website. Built on top of puppeteer.

Created: 2018-02-14 19:58:28.0

Updated: 2018-02-15 10:43:19.0

Pushed: 2018-02-14 20:25:08.0

Homepage:

Size: 129

Language: HTML

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

FetchBot 1.2.4-alpha

FetchBot

About

FetchBot is a library and shell command that provides a simple JSON-API to perform human like interactions and data extractions on any website and was built on top of puppeteer.

Using FetchBot you can do both:

FetchBot also has an “event listener like” system that turns your browser into a bot who knows what to do when the url changes. From now on it's up to you to configure a friendly bot or a crazy zombie.

Installation

FetchBot is not running on ARM architectures

Ensure dependencies below are installed on Debian/Ubuntu systems

apt-get install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget    

For other operating systems have a look in the troubleshooting section for puppeteer related problems.

For other problems leave an issue here.

Use as library in your own project

To get the most out of FetchBot it can be also integrated into a software project as a 3rd party library. From here on there are unlimited possibilities and a list of nice use cases will follow soon.

 $ cd /my/existing/project/
 $ npm install fetchbot

 $ cd /my/existing/project/
 $ yarn add fetchbot 
Use as global command

NOTICE: Do not install globally via yarn because linking is not working there

$ sudo npm install -g fetchbot --unsafe-perm=true

# --unsafe-perm=true is required yet due to global install issues in puppeteer
# https://github.com/GoogleChrome/puppeteer/issues/375#issuecomment-363466257
Options

It's important to keep in mind that e.g on linux systems without a GUI (terminal clients), FetchBot must been started using the headless=true or in terminal --headless option enabled. Many options can be applied directly via passed configuration object to control browser and page behavior. All these options can be passed via command line too. An entire list of all command line options can be obtained via:

To get a complete list whats possible via commandline just type

 $ fetchbot --help

or in a local installation

 $ ./node_modules/.bin/fetchbot --help
Options params
dless: boolean | default=false   Specifies if the browser window is shown or not
st: boolean    | default=false   Open unsecure https pages without a warning 
th: number     | defautlt=800    The Browser and viewport width
ght: number    | default=600     The Browser and Viewport height
wmo:number     | default=0       Slowes down the execution in milliseconds
ug: boolean    | default=false   Determine if debug/logging messages are shown
Pass options via command line

Command line input example

tchbot --job=./path/to/job/file.json --slowmo=250 --output=a-json-file.json --headless --debug
Pass options as configuration object in the library
t FetchBot = require('fetchbot');

ass a path to a job configuration file
nc () => {
st fetchbot = new FetchBot('./path/to/job/file.json', {headless: true});
chBotData = await fetchbot.run();  

sole.log(fetchBotData);
;

r by passing a configuration opject directly
nc () => {
const fetchbot = new FetchBot({
        "https://google.com": {
            "root": true,
            "type": [
                [
                    "input[type=\"text\"]",
                    "puppeteer-fetchbot aoepeople"
                ],
                [
                    "input[type=\"text\"]",
                    "\n"
                ]
            ]
        },
        "https://www.google.de/search": {
            "fetch": {
                "h3.r > a AS headlines": [],
                "h3.r > a AS links": {
                    "attr": "href",
                    "type": []
                }
            },
            "waitFor": [
                [
                    1000
                ]
            ]
        }
    },

    // The options object is here
    {
        "headless": true,
        "slowmo": 250,
        "width": 1280,
        "height": 1024,
        "trust": true
    }
);

fetchBotData = await
    fetchbot.run();
console.log(fetchBotData);
;
Job configuration

A job configuration is a JSON object which has on the highest level URI's as keys.

Example the configurations highest level


"https://github.com/aoepeople": {"root":true}

json

"https://github.com/aoepeople": {"root":true},
"https://github.com/aoepeople/home.html": [{}, {}],
"https://www.aoe.com/en/solutions.html": {"root":true}

Root objects

The root level url forces FetchBot to to open the page url immediately. It's allowed to have multiple root objects inside a single configuration. Once all root configuration urls have been visited the FetchBot job is finished and fetched data is returned (see Data Fetching).

Example


ttps://www.aoe.com/en/": {
"root":true,
"click":"nav.main-menu.ng-scope > ul > li:nth-child(2) > a"


Stopover objects

Stopover objects do not have the root property. These objects behave different and can be understood a bit like event listeners. Once the browser changes the url and the opened url matches a stopover url ist's configuration gets applied (e.g. by a form submission on a root page or a clicked link). Once a configuration has been applied to an open page the object gets immediately removed from FetchBot job list.

Syntax



// set of commands but each command only once
"https://www.aoe.com/en/solutions.html": {
    "click":"nav.main-menu.ng-scope > ul > li:nth-child(2) > a"
},

// Or as an array (set of command groups)
"https://www.aoe.com/en/products.html": [
    {
        "click":"[data-qa=\"header-navigation-search-icon\"]"
    },
    {
        "type":[["#city-input-field", "Open Source"]],
        "click":"#search"           
    }
]

Command types for interaction

There are three ways yet how page-commands can be called.

Note: Any single argument action can also been called using the multiple argument action

No argument action

Syntax


"reload":null  // page.reload()

Single argument action

Syntax


"click":"#myButton"  // page.click("#myButton")

Multiple arguments action

Syntax


"type":[
        ["#myInput", "Hello World"]  // page.type("#myInput", "Hello World")
]  

Data Fetching aka. “Crawling”

For data fetching there is a fetch API that simplifies puppeteers evaluation interface. The fetch API provides declarative support to four different data types:

And of course it's possible to map meaningful property names to selectors using the AS or as keyword.

Fetching the textContent attribute is the default behavior but it's possible as well to access any other attribute. Then write instead of the defined data type an object containing a configuration of type and attr. type is the data type as previously explained and attr is the attribute to fetch.

Fetch syntax


"fetch": {
    "#myFirstSelector AS exists": false,           
    "#mySecondSelector AS amount": 0,               
    "#myThirdSelector AS description": "",          
    "#myFouthSelector AS pressReleases": [],      
    "#myFifthSelector AS likes": null,             
    "#linkTargetResolved as attributeIsWorking": {
          "attr": "align",
          "type": ""
        },
        "#linkTargetResolved as attributeAlignExists": {
          "attr": "align",
          "type": false
        },
        "#linkTargetResolved as dataTestIsWorking": {
          "attr": "data-test",
          "type": ""
        },
        "h2.xyz as collectedIds": {
          "attr": "id",
          "type": null
        },
        "h2.xyz as collectedClassNames": {
          "attr": "class",
          "type": []
        }
}

The configuration above results in an object like in the example below

Result


"exists": true,
"amount": 123,
"description": "Some fetched text content",
"pressReleases": [
    "Foo",
    "Bar",
    "Baz"
],
"likes": [
    132,
    2,
    87
],
"links": [
    "http://www.foo.bar",
    "http://www.bar.foo",
    "http://www.baz.bar"
],
"attributeIsWorking": "yes",
"attributeAlignExists": true,
"dataTestIsWorking": "working",
"collectedIds": [
    123,
    456
],
"collectedClassNames": [
    "xyz",
    "xyz"
]

And now it's time to start interaction with a website

Feel free to copy this example below, save to a file e.g. googlesearch.json and execute using the cli tool.

de_modules/.bin/fetchbot --job=googlesearch.json --debug --slowmo

Example job


ttps://google.com": {
"root": true,
"type": [
  [
    "input[type=\"text\"]",
    "puppeteer-fetchbot aoepeople"
  ],
  [
    "input[type=\"text\"]",
    "\n"
  ]
]

ttps://www.google.de/search": {
"fetch": {
  "h3.r > a AS headlines": [],
  "h3.r > a AS links": {
    "attr": "href",
    "type": []
  }
},
"waitFor": [
  [
    1000
  ]
]


Results in


eadlines": [
"GitHub - AOEpeople/puppeteer-fetchbot: Library and Shell command ...",
"AOE · GitHub",
"fetchbot - npm"

inks": [
"https://github.com/AOEpeople/puppeteer-fetchbot",
"https://github.com/AOEpeople",
"https://www.npmjs.com/package/fetchbot"


A complete list whats possible on a page is yet only available in the puppeteer documentation at Page API Chapter.

Examples
Boilerplate (plain JS)
FetchBot = require('fetchbot'),

// Create an FetchBot instance whre entire config is passed in
myFetchBot = new FetchBot({"https://google.com": {root: true, waitFor: [[10000]]}}, {headless: false, debug:true});

// Or alternatively create an instance which tells FetchBot to load a JSON file as config
myFetchBot = new FetchBot('googlesearch.json', {headless: false, debug:true});

myFetchBot
    .run()
    .then(function (result) {
        console.log(result);
        // {
        //     "headlines": [
        //     "GitHub - AOEpeople/puppeteer-fetchbot: Library and Shell command ...",
        //     "AOE · GitHub",
        //     "fetchbot - npm"
        // ],
        //     "links": [
        //     "https://github.com/AOEpeople/puppeteer-fetchbot",
        //     "https://github.com/AOEpeople",
        //     "https://www.npmjs.com/package/fetchbot"
        // ]
        // }
    });       
Conclusion

FetchBot has been introduced to speed up the development process as a frontend engineer by stepping automatically over pages which are not part of the current user story. But during development more and more use cases were found and it made a lot of fun building “batch like” JSON files that turned the browser into a bot. FetchBot was written in TypeScript and is transpiled in build run. It's normally automatically built during installation.

Now it's time to thank all the people who had an open ear and a different perspective than myself and yeah all in all made FetchBot much better.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.