headless_chrome 1.0.21

Control Chrome programmatically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
  <head>
  </head>
  <body>
    <button id="incrementor">
      Click me
    </button>
    <script>
      console.info('Info Message');
      console.error('Error Message');
      console.warn('Warn Message');
      console.log('Log Message');
    </script>
  </body>
</html>