LoginSignup
0
0

More than 5 years have passed since last update.

Slimerjs で 画面キャプチャ

Posted at

Slimerjs を使うには、Firefox 59 が必要です。

1) Firefox 59 のダウンロード

wget https://ftp.mozilla.org/pub/firefox/releases/59.0/linux-x86_64/ja/firefox-59.0.tar.bz2

2) Slimerjs のダウンロード

wget https://download.slimerjs.org/releases/1.0.0/slimerjs-1.0.0.tar.bz2

3) Slimerjs のサンプルプログラム

display_page.js
// ---------------------------------------------------------------
//
//  display_page.js
//
//                  Aug/14/2018
// ---------------------------------------------------------------
var page = require("webpage").create()
const url_target="https://ekzemplaro.org/storytelling"
page.open(url_target,function (status){
    page.viewportSize = { width:1024, height:768 }
    page.render('screenshot.png')
})
// ---------------------------------------------------------------

4) 実行方法

export SLIMERJSLAUNCHER=/home/uchida/cdrom/firefox/firefox/firefox
#
/home/uchida/cdrom/slimerjs/slimerjs-1.0.0/slimerjs display_page.js

5) 実行結果の次の2つの画面が現れます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0