source: other-projects/FileTransfer-WebSocketPair/Themes/themebuilder/bin/phantomjs-1.9.2-windows/examples/loadurlwithoutcss.js@ 31525

Last change on this file since 31525 was 31525, checked in by ak19, 7 years ago

Nathan provided more stuff: Themes folder contains Sencha's Themebuilder which generates GXT Themes. It includes the .theme and generated .jar files for the project theme.

File size: 693 bytes
Line 
1var page = require('webpage').create(),
2 system = require('system');
3
4if (system.args.length < 2) {
5 console.log('Usage: loadurlwithoutcss.js URL');
6 phantom.exit();
7}
8
9var address = system.args[1];
10
11page.onResourceRequested = function(requestData, request) {
12 if ((/http:\/\/.+?\.css/gi).test(requestData['url']) || requestData['Content-Type'] == 'text/css') {
13 console.log('The url of the request is matching. Aborting: ' + requestData['url']);
14 request.abort();
15 }
16};
17
18page.open(address, function(status) {
19 if (status === 'success') {
20 phantom.exit();
21 } else {
22 console.log('Unable to load the address!');
23 phantom.exit();
24 }
25});
Note: See TracBrowser for help on using the repository browser.