mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
622 B
21 lines
622 B
// 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);
|
|
}
|
|
});
|
|
|