mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
9 lines
250 B
JavaScript
9 lines
250 B
JavaScript
if (phantom.state.length === 0) {
|
|
phantom.state = 'checking';
|
|
phantom.userAgent = 'SpecialAgent';
|
|
phantom.open('http://www.httpuseragent.org');
|
|
} else {
|
|
console.log(document.getElementById('myagent').innerText);
|
|
phantom.exit();
|
|
}
|