Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
REMitchell
GitHub Repository: REMitchell/python-crawling
Path: blob/master/6-Selenium/phantomjs/examples/printenv.js
164 views
1
var system = require('system'),
2
env = system.env,
3
key;
4
5
for (key in env) {
6
if (env.hasOwnProperty(key)) {
7
console.log(key + '=' + env[key]);
8
}
9
}
10
phantom.exit();
11
12