mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e274c26e8b
This patch: - introduces Request class. - implements Page.setRequestInterceptor method. The method allows to install a callback which will be called for every request with a |Request| object as a single parameter. The callback is free to override certain request's properties and then either continue or abort it. - implements request interception api for phantom-shim and unskips the module/webpage/abort-network-request.js phantomjs test References #1
27 lines
716 B
JavaScript
27 lines
716 B
JavaScript
"use strict";
|
|
var page = require('webpage').create(),
|
|
system = require('system');
|
|
|
|
if (system.args.length < 2) {
|
|
console.log('Usage: loadurlwithoutcss.js URL');
|
|
phantom.exit();
|
|
}
|
|
|
|
var address = system.args[1];
|
|
|
|
page.onResourceRequested = function(requestData, request) {
|
|
if ((/http:\/\/.+?\.css/gi).test(requestData['url']) || requestData.headers['Content-Type'] == 'text/css') {
|
|
console.log('The url of the request is matching. Aborting: ' + requestData['url']);
|
|
request.abort();
|
|
}
|
|
};
|
|
|
|
page.open(address, function(status) {
|
|
if (status === 'success') {
|
|
phantom.exit();
|
|
} else {
|
|
console.log('Unable to load the address!');
|
|
phantom.exit();
|
|
}
|
|
});
|