Skip to content

Instantly share code, notes, and snippets.

@matsuhisa
Created September 21, 2015 10:38
Show Gist options
  • Save matsuhisa/b278924bf9edb6b17e84 to your computer and use it in GitHub Desktop.
Save matsuhisa/b278924bf9edb6b17e84 to your computer and use it in GitHub Desktop.
sitecalyst の pagenameを取得する
var webPage = require('webpage');
var page = webPage.create();
page.open('http://www.mwed.jp/hall/16238/', function(status) {
var pageName = page.evaluateJavaScript('function(){return s.pageName;}');
console.log(pageName);
phantom.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment