mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
20 lines
565 B
JavaScript
20 lines
565 B
JavaScript
// Read the Phantom webpage '#intro' element text using jQuery and "includeJs"
|
|
|
|
var page = require('webpage').create();
|
|
|
|
page.onConsoleMessage = function(msg) {
|
|
console.log(msg);
|
|
};
|
|
|
|
page.open("http://www.phantomjs.org", function(status) {
|
|
if ( status === "success" ) {
|
|
page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
|
|
page.evaluate(function() {
|
|
console.log("$(\"#intro\").text() -> " + $("#intro").text());
|
|
});
|
|
phantom.exit();
|
|
});
|
|
}
|
|
});
|
|
|