0
votes
0answers
69 views

How to scroll down with Phantomjs to load dynamic content

I am trying to scrape links from a page that generates content dynamically as the user scroll down to the bottom (infinite scrolling). I have tried doing different things with Phantomjs but not able ...
0
votes
0answers
24 views

scraping a website that has a js error with pjscrape. is it possible?

I'm trying to scrape this website: http://www.creative-med.com/vademecum.php?cadena1=vademecum/contenido/productos/producto.php?pais=ven&cadena2=1594&pais=ven this is the last script I ran ...
2
votes
1answer
305 views

CasperJS/PhantomJS much slower than Curl

When I tried curl www.yelp.com it takes 1.1 secs. However retrieving the page using CasperJS takes over a minute! Is this normal? How do I find out what's slowing casper/phantom down? I am suspecting ...
0
votes
2answers
175 views

CasperJS passing data back to PHP

CasperJS is being called by PHP using an exec() command. After CasperJS does its work such as retrieving parts of a webpage, how can the retrieved data be returned back to PHP?
0
votes
2answers
35 views

Is it possible to detect SSL-Sites that have included “insecure content” in PhantomJS

I want to automatically check if a HTTPS page includes "insecure content" eg HTTP content. Is there a way to automatically determine that? It seems phantom just loads the content and ignores that ...
5
votes
1answer
165 views

Check/Log how much bandwidth PhantomJS/CasperJS used

Is it possible to check/log how much data has been transferred during each run of PhantomJs/CasperJS? Each instance of Phantom/Casper has a instance_id assigned to it (by the PHP function that spun ...
1
vote
1answer
254 views

Set PhantomJS to capture entire screen after using clipRect()

After doing setting page.clipRect followed by page.render, how can you disable clipRect so that subsequent page renders are of the entire viewport? page.clipRect = {top:0, left:0, height: 10, width: ...
0
votes
1answer
548 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
0answers
140 views

Submitting Forms Node-Phantom

Hey fellows I have been trying for days now to navigate a site with Node's Node-Phantom module for phantom.js. I have successfully been able to inject jQuery into the page and fill a form with the ...
2
votes
1answer
431 views

Scraping multiple pages with Phantomjs/Pjscrape

trying to scrape multiple pages but can't get the urlid array to work within the pjscrape .js file. I'm pretty sure I might be making a newbie mistake but I would appreciate some help though. Thanks ...
0
votes
1answer
187 views

phantomjs // render webpage from give dom

is there any chance to render/process a webpage just from the given DOM? At the moment we can use page.open but just with a url. In my app i've got the DOM from somewhere else so there is no need to ...
1
vote
1answer
154 views

For loop only iterates once (simplehtmldom)

I have a for loop that loops 3 times, and within the loop, a shell_exec() is done, calling a binary phantomjs and returning its output. This output is then passed into simplehtmldom's str_get_html() ...
1
vote
1answer
1k views

Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data

I get this error Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data. in my PHP functions if I do not do an echo followed by a flush(). In these functions ...
1
vote
3answers
412 views

Webpage's HTML using Phantom

I am trying to use PhantomJS to load a page (that uses Javascript to load items on the webpage) and returns all the HTML on the page (at least within the <body /> tags) to the PHP function that ...
6
votes
1answer
2k views

PhantomJS failing to open HTTPS site

I'm using the following code based on loadspeed.js example to open up a https:// site which requires http server authentication as well. var page = require('webpage').create(), system = ...
0
votes
1answer
218 views

handle window.open() while headless scraping

i have to hit the URL, http://judis.nic.in/supremecourt/chejudis.asp. submit a form here to get the page that is supposed to be scrapped.I am using PhantomJS and PJScrape . Issue is, after the form ...
1
vote
1answer
628 views

Problems with PhantomJS: phantom.args doesn't seem to work

Here is my PhantomJS test project which I run in cmd.exe by typing (for example): >phantomjs.exe abacus.js 1111 222 name: 1111 pass: 222 load started load finished jQuery loaded console> name: ...
18
votes
3answers
2k views

Scraping Google Keyword Tools with CasperJS and PhantomJS

I'm currently trying to scrape Google Keyword Tools with CasperJS and PhantomJS (both excellent tools, thanks n1k0 and Ariya), but I can't get it to work. Here is my current process: Log in with my ...
0
votes
1answer
314 views

Banner scraper with phantomjs or pjscrape

Would it be possible to develop a scraper with phantomjs or pjscrape that would allow a user to enter a URL and pull all banner ads associated with that URL?
4
votes
3answers
2k views

PhantomJS download using a javascript link

I am attempting to scrape the below website: ...
0
votes
3answers
255 views

How can I screen-scrape the HTML result of a non-trivial user scenario

I want to be able to get the HTML for a page which, if I was doing it interactively in a browser, would involve multiple actions and page loads: 1. Go to homepage 2. Enter text into a login form and ...