Files
phantomjs/examples/useragent.js
T
2010-12-26 23:12:31 -08:00

9 lines
254 B
JavaScript

if (phantom.storage.length === 0) {
phantom.storage = 'checking';
phantom.userAgent = 'SpecialAgent';
phantom.open('http://www.httpuseragent.org');
} else {
phantom.log(document.getElementById('myagent').innerText);
phantom.exit();
}