0
votes
0answers
15 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
37 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
0answers
30 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
17 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 ...
1
vote
0answers
26 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
0answers
17 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
25 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
42 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
0answers
20 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?
4
votes
1answer
77 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. ...
0
votes
1answer
44 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 ...
0
votes
1answer
78 views

Can't split CasperJS tests across multiple files

The docs weren't really useful - too brief and vague. As I understood from the docs, We just need to to run casperjs command on the the directory of tests and ensure each test ends with Tester.done(). ...
0
votes
0answers
49 views

clicking confirm box of browser using selenium

My program fails when it encounters a confirm box. I need to click that confirm box in order to proceed. I could not dig into its Html(using firebug) or so. Some one please let me know how to handle ...
0
votes
1answer
45 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
1answer
46 views

Using pagespeed with phantomjs and jenkins integration

I am trying to automate web page performance using pagespeed. Is there any plugin available for pagespeed to run on phantomjs we have yslow plugin for the same and its working locally ...
1
vote
2answers
78 views

how to click a “select option” and then evaluate loaded content with casperjs

I'm trying to crawl the sizes for this product: Link to product The problem: The sizes are loaded after the color of the product is selected. In the product page's source code, I can see that the ...
0
votes
1answer
89 views

Running PhantomJS as a server

I'm looking into using PhantomJS to generate static html from a dynamic AngularJS app that can be indexed by google. What I want to do is to start a PhantomJS server that sits behind a proxy and gets ...
0
votes
0answers
26 views

How to set CLI params for phantomjs using config.json,

While running phantomjs with CLI using --ignore-ssl-errors=yes it works, but I am using npm wrapper for phantom using child args, then how can i set these params to set the value as true by default.
0
votes
0answers
22 views

PhantomJS not working with Jenkins

I followed Web page Capture and save to image using phantomjs lib and able to save screenshot on my local. However when executing PhantomJS command with Jenkins, following error is generated: ...
0
votes
0answers
40 views

Most performant way to execute JS within a webpage in Ruby (HtmlUnit, Celerity, PhantomJS, CasperJS …)

What's the most performant way to execute JS directly after a HTTP request in JRuby? I know about all the test frameworks like HtmlUnit, Celerity, Capybara + PhantomJS == Poltergeist, CasperJS etc. ...
0
votes
1answer
38 views

PhantomJS updating resource file path

I have a nodejs+phantomjs setup. I am trying to generate html and serve it to the bot for seo. The app currently works but I want to improve the performance. Since a lot of js files are loaded, I am ...
2
votes
0answers
72 views

Dynamic tracing of all event handler registrations in JavaScript

My goal is to dynamically trace all registrations of event handlers in JavaScript, including but not limited to the document and window object. A piece of code is supposed to run before the rest of ...
0
votes
3answers
152 views

How to use asp.net and phantomjs to take a screen shot of a page and return it to the client

I want to be able to read a screen shot of a web site, and am attempting to use phantomjs and ASP.NET. I have tried using page.render which would save the screen shot to a file. It works as a ...
0
votes
0answers
83 views

Scraping attempt using CasperJS , PhantomJS, and a postback

I am attempting to scrape a site which uses .aspx files, or ASP.net . There are radio buttons which on each click, perform a postback. I'm now aware that a postback in ASP.net is merely a POST call, ...
-2
votes
0answers
54 views

Scraping pages with javascript - comparison [closed]

I know that scraping can be done with lots of languages and with the excellent phantomjs. Having said that, I want to migrate a phantomjs script that I have to a more versatile language in order to ...
1
vote
1answer
91 views

casperjs/phantomjs not triggering the 'change' event

I have two select boxes and I'm triggering the 'change' event on the first one so the second one gets populated. This code works well in Chrome however it doesn't work in phantom/casper. Why doesn't ...
2
votes
1answer
139 views

PhantomJS not rendering when executed from PHP

New to phantomjs decided to use this to print screenshots from webpages. From the terminal everything works fine but when executing from PHP script with shell_exec function the render doesn’t work. ...
0
votes
0answers
71 views

Running jasmine specs headlessly with phantomjs

I have been using jasmine-headless-webkit to run my jasmine specs on my Rails 3.2 app, but I recently switched over to phantomjs/poltergeist to run my request specs, so I am needing to upgrade my ...
1
vote
1answer
125 views

SEO in backbone.js - How to make google index the page after the page is being rendered?

I am building my website with backbone js application framework and I am changing the urls with the html5 push state. All the content is being rendered through the js and basically the dom is more or ...
0
votes
1answer
233 views

How to make correspond PhantomJS screenshot dimension with an actual webpage?

I am taking a screenshot from an webpage of mine with PhantomJS. The code is simply var page = require('webpage').create(); page.open('Target_Zone_Selection.html', function () { ...
0
votes
1answer
101 views

PhantomJS webpage#render doesn't show javascript generated SVG which is included in webpage#content

This is my PhantomJS script: https://gist.github.com/beckyconning/5404506 This is the javascript included in the page: https://gist.github.com/beckyconning/5404532 This is the relevant HTML: ...
2
votes
0answers
102 views

event listener for phantomjs stdin

Is it possible to set up an event listen for phantomjs's system.stdin events? example where phantomjs can read from stdin but halts everything while waiting for input: var system = ...
0
votes
1answer
85 views

Render CSS3 animation as a sequence of image files with PhantomJS

I didn't work with PhantomJS before, but want to use it to render some custom-made CSS3 animated sequences to sets of PNG files on server side to join them into a single video file next. Seems like ...
1
vote
1answer
71 views

How do I terminate this subprocess with a timeout?

I know the question on terminating a subprocess call has been asked a few times, including here but, trying to follow those answers, I can't seem to get mine to exit if the script hangs (in my case I ...
1
vote
0answers
86 views

PhantomJS WebPage memory consumption?

Is there a programmatic (since i want to do it automatically at runtime) way to see how much memory a webpage uses when running it through PhantomJs? I am also using casperjs if that could be ...
1
vote
1answer
41 views

loadspeed.js timings : onload, DomContentLoaded or something else?

Are loadspeed.js timings correct ? because i have different results between loaspeed.js and developpor toolbar in Chrome. var page = require('webpage').create(), system = require('system'), ...
1
vote
1answer
49 views

Automated tests in phantomJS: how to access console logs

I'm using PhantomJS for automated testing. I want to know if there is a way by which an automated test can access console logs. I don't know if phantomJS publishes console logs since it's a headless ...
0
votes
1answer
57 views

is there a way to execute phantomJS statements in chutzpah?

I'm running some Qunit tests to test a framework. I'm not able to fetch the cookies from phantomJS as my test hangs there. It's not able to read cookies. I tried to fetch the fetch phantom cookies ...
0
votes
0answers
49 views

PhantomJS cookie storing

Does phantomJS store the cookies in a different pattern than the other browsers? (I was comparing the two cookie output files of crome and phantomjs and they were different). I'm trying to retrieve ...
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: ...
3
votes
1answer
51 views

Does phantomJS support geolocations?

I'm trying to run qunit test cases with PhantomJS. One of my tests are hanging in when phantomJS try to access the navigator.geolocation function of DOM. same test is working fine in the browser, just ...
0
votes
0answers
79 views

Create PDF from a very wide page with PhantomJS

I have a very wide, about 2000-3000px, page which I want to print to PDF using PhantomJS. No matter how wide I set the viewport the page size stays the same, while the content goes way out of the ...
0
votes
1answer
58 views

PhantomJS Cookies

I'm trying to run some QUnit test cases with phantomJS and chutzpah console. I'm having difficulties communicate with the phantomJS cookies. My test case runs perfectly with the browser communicating ...
1
vote
2answers
84 views

How can I remove a whole IndexedDB database (from JavaScript)?

How can one remove a whole IndexedDB database, as opposed to just an object store? Preferably I'd like to be able to do this from JavaScript, but if this isn't possible I wouldn't mind knowing how to ...
0
votes
1answer
77 views

Running Composite Tests with PhantomJS

I want to automate some technical tests on an entire domain. These test can be loadspeed, Yslow Grade, Js errors, Response Status Code Check... I successful created a spider script that grabs all urls ...
2
votes
1answer
163 views

PhantomJs to save png image of google chart's API GeoChart

I am trying save the chart generated by google charts as a png image. The code works fine for all charts except GeoChart.The image sometimes does appears but often its just blank. Here is the code . ...
0
votes
1answer
100 views

phantomjs getting all img elements

I have the following code in an exercise I've made for myself: var imgs = page.evaluate(function() { return document.images; }); for (var i in imgs){ console.log("source: " + i.src); } but ...
1
vote
2answers
390 views

can phantomjs work with node.js?

I would like to use phantomjs in my node.js script. there is a phantomjs-node library.. but unfortunately the author used this weird coffee script code to explain what he's doing: phantom = require ...
1
vote
1answer
66 views

How to trigger a window.scrollTo(x, y) in phantomJS

I open a web page, and I want trigger a scrolling in onLoadFinished callback. but it dose't working. I also tried scrollPosition and set timer to sent key event. Both of them dose't working. So ask ...
0
votes
0answers
138 views

Python, Javascript (PhantomJS) server side communication

What would be a good way for my .py and .js scripts to communicate? The .js script is executed via PhantomJS (or Casper) and both are server side. Ideally, the Python script would send some ...

1 2 3 4 5 6