PhantomJS is a headless (GUI-less) WebKit with JavaScript API. It has native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.
0
votes
1answer
34 views
Casperjs new page but table does not update.
I am trying to extract the table in the following website
...
1
vote
1answer
57 views
Why doesn't Phantom.js evaluate work with my Backbone app?
page.open(My_url, function(status) {
page.evaluate(function() {
var html = document.documentElement.outerHTML;
return ...
0
votes
1answer
72 views
Using Phantom.js evaluate, how can I get the HTML of the page?
page.evaluate(function() { return document; }, function(result){
console.log(result)
next();
});
result is actually a huge object. I don't know the properties and ...
0
votes
1answer
65 views
phantomjs page.evaluate not logging onto console
I am a PhantomJs newbie. Just checked a similar post on this site. My question is why 'foo' is not logged to console or printed?
var page = require('webpage').create()
var foo = 42;
function ...
0
votes
1answer
79 views
Highcharts export to svg
Based upon this tutorial, I am successfully running the following (simplified) example :
phantomjs highcharts-convert.js -infile options1.json -outfile chart1.png -width 300 -constr Chart
I can ...
0
votes
0answers
109 views
Running PhantomJS from PHP starts multiple processes and doesn't complete
I'm trying to use PhantomJS to render a fairly complex page, with lots of dynamically created content from AJAx calls, to a PDF file.
I'm using the rasterize.js example provided and it's working ...
1
vote
1answer
41 views
PhantomJS image of Dom Element
I'm new to PhantomJS and not very good with Javascript to be honest. I'm looking to take a snapshot of a given website but only the selected dom element. So command wise it would look a little like
...
1
vote
1answer
95 views
Phantomjs - How to populate a form, submit and get the results?
I can't seem to do a simple form submit.
Below is the code that I did to submit "Test" to the Google search form and print out the results.
var url = 'http://www.google.com/',
page = new ...
2
votes
1answer
132 views
Limit memory usage of phantomjs using selenium webdriver?
I'm running phantomjs in Remote WebDriver mode with phantomjs --webdriver 8910 and then getting many pages using the Selenium python bindings with something like:
wd = webdriver.PhantomJS(port=8910)
...
0
votes
1answer
46 views
What is the Python equivalent to Django File object?
I need to modify the HTTP header of a file within Python, and I know this is possible using the Django 'File' object (https://docs.djangoproject.com/en/dev/topics/files/) as documented in the example ...
0
votes
0answers
33 views
PhantomJS to get infos from facebook's ad planner
I would like to do a script that automatically gets some numbers from https://www.facebook.com/ads/create/ once a week. For example the number of facebook users of a certain country. Nothing really ...
1
vote
2answers
84 views
Does CasperJS provide references to the underlying PhantomJS objects?
I'm migrating a script from PhantomJS to CasperJS, and am wondering if Casper provides any references to the Phantom objects that it is using behind the scenes.
Phantom provides some functionality ...
0
votes
1answer
92 views
Running PhantomJs from command prompt using C#
I am trying to run PhantomJs.exe throw C# code.
My Code :
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Normal;
...
3
votes
1answer
130 views
PhantomJS hanging when called from CLI or Web
I'm trying to use phantomJS to capture a screenshot of a URL, however when I call phantomJS (from either the command line or web app) it hangs and seesm to never execute the "exit()" call. I can't ...
1
vote
0answers
42 views
Report JUnit tests results from PhantomJS to Maven's Surefire plugin
Right now I'm calling an Ant buildall.xml inside my pom.xml (maven-antrun-plugin, test phase):
pom.xml
<ant antfile="src/test/js/build.xml" target="init" useNativeBasedir="true"/>
That ...
-1
votes
0answers
10 views
How to use sozi2video.js and sozi2video.py ? in UBUNTU [closed]
Few days ago I have got the video export script link (https://github.com/senshu/Sozi/tree/dev/tools/sozi2video)
basically two codes sozi2video.js and sozi2video.py.
Two days now I am trying to ...
0
votes
1answer
96 views
XPath works on Chrome console but not on Selenium
@Arran solved, selenium dont work well with
text() function, updated xpath to ://table[@width=200]/tbody/tr[1]/td/a
I need manipulate a internal system and it never get on time.
I changed timeouts ...
0
votes
0answers
57 views
phantomjs: unknown module system
Phantomjs version 1.4 (the newest version available through apt). I have a single js file, with this content:
var page = require('webpage').create();
var system = require('system');
When I run it, ...
1
vote
0answers
61 views
phantomjs compile with webGL
I am trying to compile phantomjs to add webGL. Apparently it is possible because of: https://groups.google.com/forum/#!msg/phantomjs/yagAkrYl6eg/rltehGAyt9QJ .
...
0
votes
0answers
15 views
What is the best approach for Campaign Monitor to displaying custom data sets
I'm currently working with the Campaign Monitor API which limits a max of 20 custom vars at 250 chars each.
I want to use there service as the white hat servers along with the analytics are worth ...
1
vote
0answers
152 views
How Do I implement PhantomJS + Wedriver on c#
I have written the following code and downloaded PhantomJS intot he specified folder on c:\ but am getting the error: "Unable to connect to remote server ...". Here is the code I wrote:
[TestMethod]
...
0
votes
1answer
78 views
How would you send a mail through mandrill with phantomjs?
I'm doing some screen scraping with phantomjs. I'm trying to implement an error handling system that sends an email with the mandrill api https://mandrillapp.com/api/docs/messages.html when the ...
1
vote
1answer
112 views
Why won't trigger events work in my phantomjs script?
I am writing some automated ui tests for a single page wizard style form that I am building. I am trying to simulate a keyup on a particular input element but the .trigger jquery method doesn't seem ...
0
votes
1answer
100 views
CasperJS seems unable to recognise password field on login form
I'm brand new to CasperJS and coffeescript. I have a very simple part of my CasperJS coffeescript test to login to a website, that used to work before a recent change to the password element of the ...
0
votes
0answers
175 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
62 views
Setting PhantomJS viewportSize in QUnit test
I need to test my script at different viewport sizes. In my tests I'd like to change the viewport size of PhantomJS by setting page.viewportSize. I'm running my tests through grunt-contrib-qunit and ...
0
votes
0answers
57 views
How to use PhantomJS as standalone (static) library in an Objective-C project?
I need a headlead webbrowser for my project. PhantomJS seems quite well suited for my requirements. Now I want to use PhantomJS in my Objective-C project. I don't want to run it as an executable. I ...
1
vote
2answers
94 views
How to test the Node js application with mocha-phantomjs
I need to test my Node js apllication with mocha-phantomjs.I have tried the below code to test the app but i'm getting error as 'ReferenceError: Can't find variable: require'.How to resolve this.
...
0
votes
1answer
55 views
Capybara/Poltergeist causing unexpected results in request spec in Rails 3.2 app
Is there an alternative I can use to Capybara's save_and_open_page? I have written a request spec that test the user signup form. Upon successful signup, which this test should yield, this test should ...
0
votes
1answer
60 views
PhantomJS runs fine as me, returns blank page when running under IIS
I'm running an ASP MVC3 website that spins off a new process that runs phantom js, which calls a website and writes what it sees to a file. The IIS_IUSRS group has write access to the directory. If ...
1
vote
0answers
43 views
Ghostdriver with PHPUnit
I'm attempting to use PhantomJS as a browser for PHPUnit Selenium tests.
I've set Selenium running in grid mode, and started phantomjs with webdriver, and registered it to the grid, as in the ...
2
votes
1answer
294 views
adjust pdf options for phantomjs
I use phantomjs for pdf generation. So I do
./phantomjs rasterize.js <someurl> test.pdf
It generates pdf file but:
1. Pdf looks far from original website
2. I can't set page orientation
3. ...
0
votes
0answers
26 views
phantomjs call returning error
I'm trying to get a simple "hello world" up and running using phantom.js, but getting "Uncaught SyntaxError: Unexpected identifier" when I try to make a phantomjs call.
Phantomjs.exe, my HTML and ...
0
votes
0answers
56 views
Evaluating javascript is crashing when I run PhantomJS in parallel
I'm controlling PhantomJS from node using https://github.com/sgentle/phantomjs-node. I'm using node-fibers to run several tests in parallel. Each fiber owns one PhantomJS page (all sharing the same ...
0
votes
1answer
68 views
Debugging PhantomJS webpage.open failures
In PhantomJS, webpage.open takes a callback with a status parameter that's set to 'success' or 'fail'. According to the docs, it wll be "'success' if no network errors occurred, otherwise 'fail'." ...
1
vote
0answers
68 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 ...
1
vote
4answers
59 views
Execute console command in PHP
I'm trying to execute a console command when a user clicks an "Export PDF" button. I'm using Phantom JS to generate a PDF output.
If I run the following in my command prompt it all works fine:
...
0
votes
0answers
31 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 ...
0
votes
1answer
45 views
Calling the Facebook API from CasperJS?
I'm trying to call the facebook API using casperJS, using a url like so:
...
0
votes
1answer
70 views
phantomjs: is webpage singleton?
see code below.
I want to capture two web page.
After run this code using phantomjs, I only got one screenshot of webpage(www.baidu.com).
Is webpage in phantomjs singleton? Can I open two webpages in ...
0
votes
1answer
47 views
Is there a way to read user input from keybord for PhantomJS?
I'm using PhantomJS to login website and the captcha has to be inputed manually.
How can I save the captcha image to disk, and then input the captcha by hand in PhantomJS console?
1
vote
1answer
73 views
How to scroll a page with phantomJs
I wanna render a page that load its images only when the user scrolls the page. Just setting page.scrollPosition has no effect. I need something that change the scroll position over time.
1
vote
2answers
74 views
Testing responsive design with poltergeist (phantomjs)
I'm using Twitter Bootstrap and poltergeist. I'm trying to hide some elements for mobile resolutions, for example:
view:
<th class="hidden-phone">Email</th> ....
css:
.hidden-phone {
...
4
votes
1answer
148 views
Javascript unit testing with V8
Currently, I am using PhantomJS for running Javascript unit tests in QUnit and Sinon framework on our build server.
But, PhantomJS uses JavaScriptCore with JIT compiler as its Javascript engine. ...
1
vote
0answers
118 views
Performance testing with PhantomJS
I am using Google soy templates and have developed both Server-side and client-side rendering solutions. I want to benchmark them using performance tests. While benchmarking the client-side part, I ...
0
votes
0answers
100 views
In Node js how to use Should js assertion library with mocha-phantomjs testing framework
In node application.How can i use 'Should js' assertion library with 'mocha-phantomjs' testing framework.
Test.js
var should=require('should');
describe("Comparison", function () {
...
0
votes
2answers
51 views
Running Capybara tests at a different url when on Travis CI
I have some integration tests written in Capybara which I'm running on Travis. In the tests I hit a hardcoded url (given by Pow and symlinks) with the visit method. This of course does not work well ...
0
votes
1answer
110 views
How to use Should.js assertion library with Phantomjs-mocha testing framework
In my application i need to use Phantomjs-mocha testing framework to test my application node js code.So i have installed Should js assertion library.While running some example code i'm getting ...
1
vote
1answer
190 views
Using Selenium in the background
Im using Selenium and chrome webdriver but when i run scripts it opens the wwindow is there anyway that is can access the internet without the window popping up?
Here is an example code:
from ...
0
votes
0answers
30 views
grunt qunit in conjunction with grunt server
While running grunt server for developing, How can I separately use tehe grunt qunit task to run the tests.
While trying to pass ["test/**/*.html"] to the all property, but that fails to run and ...

