1
vote
1answer
257 views

Phantom JS synchronous AJAX request : NETWORK_ERR: XMLHttpRequest Exception 101

I am making a synchronous ajax call ( ajax settings async: false ). This works well. Now I'm trying to write an automated test for this in phantomJS and I'm getting this error NETWORK_ERR: ...
0
votes
1answer
154 views

Load a javascript/ajax call on click using phantomjs

I am trying to build a webscraper with which I can download the HTML source after information is received from a ajax call on click. Simply speaking initially I download a the webpage and then on ...
0
votes
0answers
66 views

Is the synchronous flag of an XHR supported in phantom.js?

I'm attempting to use phantom.js to test/profile a fairly heavyweight Ext-js 4.1 application. This application makes use of Ext.syncRequire to load some pre-application-init singletons (One for auth ...
0
votes
1answer
520 views

CasperJS click event having AJAX call

I am trying to fetch data from a site by simulating events using CasperJS with phantomJS 1.7.0. I am able to simulate normal click events and select events. But my code fails in following scenario: ...
0
votes
1answer
680 views

PhantomJS: event handler that executes AJAX call

This is a simple test case for PhantomJS to demonstrate that an event handler that, when invoked, executes an AJAX call, does not work. I've created a simple test here to try and access some content ...
0
votes
0answers
91 views

Synchronizing phntomjs with scrapy

I have tried to write a spider using scrapy and phantomjs. I needed phantomjs because some pages are ajax loaded. What i did was I started the crawler and called the phantomjs executable to load the ...
0
votes
1answer
113 views

Is there a way to request new Tor identity in PhantomJS?

I'm trying to use PhantomJS to scrape a website meanwhile using Tor to change my IP address. I'd like to know is there a way to request new Tor identities in Javascript. I've seen this question but ...
35
votes
1answer
1k views

VCRProxy: Record PhantomJS ajax calls with VCR inside Capybara

I already did some research in this field, but didn't find any solution. I have a site, where asynchron ajax calls are made to facebook (using JSONP). I'm recording all my HTTP requests on the Ruby ...
0
votes
1answer
76 views

Precomputing Client-side Javascript Execution

Suppose you were to build a highly functional single-page client-side application that listens to URL changes in order to navigate around the application. Suppose then, that when a user (or search ...
0
votes
1answer
412 views

Ajax call to a local Phantom.js server from local js script

I have set up an Apache server running locally that hosts my web application (written in ExtJs). I have also a secon local server made with phantom.js and listening on port 8080 : var server, ...
2
votes
1answer
3k views

Click on a link with phantom.js and retrieve the document html

I'm new with phantom.js and I'm trying to navigate on a website page, to click on a link (that calls an AJAX function and changes the document HTML) with phantom.js. Here is my code: ...