Tagged Questions
1
vote
0answers
39 views
How to remotely fetch answer of phantomjs script run on heroku?
I want to fetch some information from a website using the phantomjs/casperjs libraries, as I'm looking for the HTML result after all javascripts on a site are run. I worked it out with the following ...
0
votes
1answer
50 views
Rendering differences between phantomjs and my web browser
I am trying to take a screenshot from a webpage with PhantomJS. I use the following code (which works) :
var args = phantom.args;
var Address = args[0];
var Destination = args[1];
...
1
vote
0answers
58 views
Convert HTML Page to SVG Image via PhantomJS
I am currently testing the PhantomJS system to generating screenshots of different websites...
The current rendering output of the images is a .png but what I need is a SVG image.
Does someone know ...
0
votes
1answer
141 views
start using phantom.js in javascript
I don't really understand how to us PhantomJS in my webpage... I've been able to use as a binary on Windows but now need to include in my web app online.
I've installed the Linux version and gotten ...
0
votes
5answers
401 views
How to convert a html page to pdf in Django
I am using Django to create a report site. The reports are generated dynamically, they also include some SVG charts. I want to create a PDF file which is based on the current report the user is ...
1
vote
3answers
118 views
extract elements from a html page
I download some youtube comment page and I want to extract username(or user display name)
and the link
like from the following code block:
<p class="metadata">
<span class="author ...
0
votes
1answer
1k views
Scraping dynamic page content phantomjs
My company is using a website that hosts all of our FAQ and customer questions. We have plans to go through and wipe out all of the old data and input new and the service does not have a backup, or ...
0
votes
0answers
156 views
PhantomJS: getting back weird object from select drop-down in evaluation
I'm scraping a website that uses a form to access data. In order to do this, I have to select the options I'm interested in from a select element. First, I'd like to compile a list of the strings that ...
0
votes
1answer
913 views
How to print html source to console with phantomjs
I just downloaed and installed phantomjs on my machine. I copy and pasted the following script into a file called hello.js:
var page = require('webpage').create();
var url = 'https://www.google.com'
...
1
vote
1answer
639 views
Opening multiple html files in PhantomJs via PHP throws syntax error
I want my php script to call phantomjs from command line, which will generate muliple pdf's out of many html files. So I have a concatenated string with paths to my html files, and next I invoke exec ...
2
votes
3answers
766 views
How to generate page running on server as a PDF
The task is not easy, as I need to create a PDF version of a page after clicking a button. It has a complicated dom structure, with many elements positioned absolutely/relatively, and the data is ...
2
votes
4answers
621 views
jQuery “:contains()” analog for pure JS
I'm writing a script for CasperJS. I need to click on the link that contains a span with "1". In jQuery can be used :contains('1'), but what the solution is for selectors in pure Javascript?
HTML: ...
15
votes
2answers
9k views
Save and render a webpage with PhantomJS and node.js
I'm looking for an example of requesting a webpage, waiting for the JavaScript to render (JavaScript modifies the DOM), and then grabbing the HTML of the page.
This should be a simple example with an ...
2
votes
1answer
3k views
PhantomJS and getting modified DOM
Hi StackOverflow Community!
I'm developing a tool that needs to download a web page from 3rd party server, execute it as a browser would and then parse the HTML. What I struggle with is that the tool ...