1
vote
0answers
19 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 ...
0
votes
1answer
80 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 ...
0
votes
1answer
65 views

Repeating “Asynchronous Sessions cleanup phase starting NOW”

When I run my test suit, I find that intermittently some of the texts will hang for a very long time (15 mins to half an hour) with PhantomJS constantly reporting: Asynchronous Sessions cleanup phase ...
2
votes
2answers
338 views

Alternative to PhantomJS for Testing

I'm currently trying to build a little testing suite for CI (Hudson). I've written a complex script which dynamically invokes other Scripts and populates a given DIV element. My Selenium tests work ...
1
vote
1answer
236 views

CasperJS and alert boxes

How do I test that an alert box on my page was called? Can I grab the text of the alert box and evaluate it? My click in CasperJS is done like this: ...
1
vote
0answers
49 views

YUI and Phantom/CasperJS : issue with Y.get callback

I use YUI 3 as my main Javascript library and CasperJS for testing. In my application I load CSS dynamically. I utilize Y.Get.css like this: Y.Get.css( '#my_cssFile#', { attributes ...
0
votes
1answer
50 views

Qunit shows the result from another test

I would like to use unit testing for JavaScript in TeamCity. I am using QUnit, phantomjs and QUnitTeamCityDriver. But I have some problem. I get the following test result: ##teamcity[testFailed ...
2
votes
0answers
281 views

QUnit tests fail on Travis CI (running on phantomjs with grunt.js)

We've introduced CI system with travis CI to our open source project enchant.js on JavaScript. https://github.com/wise9/enchant.js We like qunit tests and we're running them with grunt.js (npm), but ...
0
votes
0answers
34 views

Accessing Django webserver while running tests

I am playing around with phantom.js and some javascript tests. Eventually I would like these to be run with the rest of the tests in our Django app. How can I go about pointing phantom.js to the ...
0
votes
1answer
95 views

Why is [object Casper].test undefined?

I am evaluating CasperJS' testing API under Windows. Unfortunately, the test property of the Casper object is always undefined. Running the following script prints "this.test is undefined": ...
1
vote
3answers
445 views

Invoke JS method directly from CasperJS

I'm trying to test a page using CasperJS, in particular I want to poke the data model a bunch. Let's say I've got a basic function called taxes, and I want to ensure that it uses the right tax rate. ...
0
votes
2answers
78 views

Cookie isolation for testing

I would like several instances of a web-page at once for testing. Each time with a different user, and hence a different cookie. To save time, I would like to run these tests in parallel. The problem ...
0
votes
2answers
309 views

Why would a developer ever need PhantomJS as opposed to just using some testing framework?

I'm not sure why PhantomJS is necessary and I'm hoping someone can help.
2
votes
0answers
222 views

javascript integration testing for one page applications

I am currently developing a one page javascript application using Sinatra Ruby on server side and Backbone.js, jQuery, jQuery UI for the client side. The application main purpose is to allow a ...
0
votes
1answer
115 views

How to integrate different test automation in web project

I want to test all the feature in my web site just like regression test, which is used to guarantee new code do not make other feature crash. The test i need is just like this: Login the website ...
4
votes
1answer
868 views

How to load JSON via get into variable in CasperJS script

I'm using the following code to load some JSON data into a variable in my casperJS script: var casper = require("casper").create({ verbose: true, logLevel: 'debug', pageSettings: { ...
5
votes
1answer
733 views

controlled async exit from phantomjs

I am trying to do some testing with phantomjs... basically I want to: open a page on my webserver once the page has initialized (all the page js has loaded) call the page js from phantomjs and test ...