Can I unit test the DOM? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T18:08:20Z http://stackoverflow.com/feeds/question/296229 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom 2 Can I unit test the DOM? Frank 2008-11-17T17:21:23Z 2008-11-19T03:38:40Z <p>Hello,</p> <p>We have a Ruby on Rails app that uses some javascript in the views. Since we have good test coverage on the rest of the app, we want to continue that here. The js we use manipulates the DOM to show/hide divs and perform incremental searching for a combobox selecting from a table.</p> <p>Does anyone know of ways to test DOM manipulation?</p> <p>Frank</p> http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom/296344#296344 0 Answer by Brian C for Can I unit test the DOM? Brian C 2008-11-17T17:58:25Z 2008-11-17T17:58:25Z <p>jQuery library ships with a pretty good unit testing library you can use to test dom manipulation. The library's called QUnit.</p> http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom/296392#296392 1 Answer by Kristof Neirynck for Can I unit test the DOM? Kristof Neirynck 2008-11-17T18:19:26Z 2008-11-17T18:19:26Z <p>You could use <a href="http://developer.yahoo.com/yui/yuitest/" rel="nofollow">YUI Test</a> or <a href="http://selenium.seleniumhq.org/" rel="nofollow">Selenium</a>.</p> http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom/296511#296511 0 Answer by Jeffrey Fredrick for Can I unit test the DOM? Jeffrey Fredrick 2008-11-17T19:03:39Z 2008-11-17T19:03:39Z <p>In the past I've done this with <a href="http://www.jsunit.net/" rel="nofollow">jsUnit</a>.</p> http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom/299711#299711 1 Answer by mog for Can I unit test the DOM? mog 2008-11-18T18:43:02Z 2008-11-18T18:43:02Z <p>You can use the java libraries HttpUnit or HtmlUnit that can test the finished DOM after being manipulated by JS.</p> <p><a href="http://htmlunit.sourceforge.net/javascript-howto.html" rel="nofollow">http://htmlunit.sourceforge.net/javascript-howto.html</a> <a href="http://httpunit.sourceforge.net/doc/cookbook.html" rel="nofollow">http://httpunit.sourceforge.net/doc/cookbook.html</a></p> <p>Both use the full-featured JavaScript engine Mozilla Rhino, and then add their own DOM implementations.</p> <p>This will allow you to run these test automatically in the background without any browser or sideeffects.</p> <p>Bonus: You can use call these libraries directly from Ruby using JRuby.</p> http://stackoverflow.com/questions/296229/can-i-unit-test-the-dom/300924#300924 0 Answer by Eugene Lazutkin for Can I unit test the DOM? Eugene Lazutkin 2008-11-19T03:38:40Z 2008-11-19T03:38:40Z <p>I just <a href="http://stackoverflow.com/questions/300855/looking-for-a-better-unit-test-tool-for-javascript#300915">answered a similar question</a>. In short: take a look at <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-4-meta-dojo/d-o-h-unit-testing" rel="nofollow">Dojo's DOH</a>, <a href="http://dojotoolkit.org/2008/08/11/doh-robot-automating-web-ui-unit-tests-real-user-events" rel="nofollow">doh.robot</a> and <a href="http://blog.dojotoolkit.org/2008/10/31/doh-robot-part-2-automating-acceptance-tests-and-user-stories" rel="nofollow">dijit.robotx</a> (using Dojo is not required for DOH, and it doesn't depend on Dojo).</p>