22 lines
622 B
JavaScript
22 lines
622 B
JavaScript
// Read the Phantom webpage '#intro' element text using jQuery and "includeJs"
|
|
|
|
"use strict";
|
|
var page = require('webpage').create();
|
|
|
|
page.onConsoleMessage = function(msg) {
|
|
console.log(msg);
|
|
};
|
|
|
|
page.open("http://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("$(\".explanation\").text() -> " + $(".explanation").text());
|
|
});
|
|
phantom.exit(0);
|
|
});
|
|
} else {
|
|
phantom.exit(1);
|
|
}
|
|
});
|