I've never used Selenium but I guess it's for simulating user interaction in all browsers.
That's like integration tests.
But how do you test your js libraries/frameworks (unit testing) on all the browsers in an automated way?
|
I've never used Selenium but I guess it's for simulating user interaction in all browsers. That's like integration tests. But how do you test your js libraries/frameworks (unit testing) on all the browsers in an automated way? |
|||||
|
|
The best one imo is the one from YUI : http://developer.yahoo.com/yui/3/test/ But doing unit-testing in every browser is kind of hard... Most people just test with it during development and just use node.js to test later on in case they broke something. |
|||||||
|
|
For unit-testing you can try http://code.google.com/p/js-test-driver/ |
|||||||||
|
|
You can have a look at TestSwarm. |
|||||
|
|
As the referenced post in a previous article suggests, you could use js-test-driver. Its specifically for JavaScript unit testing across multiple browsers, exactly what you want. I have messed around with it and it is pretty good. I haven't done any serious commercial testing in it though. |
|||||||
|
|
For unit testing you should look at solutions that do not load up a browser to do the tests. You can look at something like RhinoUnit for that - http://code.google.com/p/rhinounit Also have a look at Dojo Object Harness (DOH) unit test framework http://dojotoolkit.org/reference-guide/util/doh.html Look at a similar question here which can give you an idea on how to TDD js - Looking for a better JavaScript unit test tool |
|||||
|
|
To test multiple browsers in parallel you would Selenium Grid. Please take a look here: http://selenium-grid.seleniumhq.org/step_by_step_installation_instructions_for_windows.html for step by step instructions on how to use it. |
|||||
|
|
It's no longer actively maintained, but I've still been happy with JSUnit for Javascript unit testing: http://www.jsunit.net/ It includes both an HTML/Javascript framework you can run in the browser, and a java-based test runner that you can invoke from ant. |
|||||||
|
|
I haven't used it so far, and it is still in beta, but FuncUnit declares itself as "A functional test suite based of qUnit, Selenium and jQuery". There is also an infographic explaining how it works Maybe it is something what you want? The github repo seems to be quite active. |
|||
|
|
|
You should check http://saucelabs.com its a cloud base selenium environment that allow you to build your test and then upload them, run them in as many browsers as you want. |
|||
|
|
You should consider the capabilities offered by crossbrowsertesting.com (It is not for free). For js testing try JsUnit (http://www.jsunit.net/). Quoted from its homepage JsUnit is a Unit Testing framework for client-side (in-browser) JavaScript. It is essentially a port of JUnit to JavaScript. Also included is a platform for automating the execution of tests on multiple browsers and mutiple machines running different OSs. |
||||
|
|
|
As people have already said so, you should use JsTestDriver. It has it's own test system, but you can use other test libraries with it, for example Jasmine ( http://pivotal.github.com/jasmine/ ). You can find a list of adaptors for JsTestDriver here: http://code.google.com/p/js-test-driver/wiki/XUnitCompatibility |
|||
|
|
|
I'd go for QUnit, which is what jQuery uses. I've ran it on lots of desktop browsers as well as iPhones and Android phones. There's some great tutorials and it can be integrated easily with things like js-test-driver. QUnit is modeled after JUnit and all the other xUnit testing frameworks (like PHPUnit) so it's easy to pick up the API. The basic syntax is as follows:
It also looks quite nice:
|
|||
|
|
|
There are few companies that specialize in cross browser testing. http://saucelabs.com/ (already mentioned here) Use whatever testing lib you want. |
|||
|
|