Can I unit test the DOM? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T18:08:20Zhttp://stackoverflow.com/feeds/question/296229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/296229/can-i-unit-test-the-dom2Can I unit test the DOM?Frank2008-11-17T17:21:23Z2008-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#2963440Answer by Brian C for Can I unit test the DOM?Brian C2008-11-17T17:58:25Z2008-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#2963921Answer by Kristof Neirynck for Can I unit test the DOM?Kristof Neirynck2008-11-17T18:19:26Z2008-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#2965110Answer by Jeffrey Fredrick for Can I unit test the DOM?Jeffrey Fredrick2008-11-17T19:03:39Z2008-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#2997111Answer by mog for Can I unit test the DOM?mog2008-11-18T18:43:02Z2008-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#3009240Answer by Eugene Lazutkin for Can I unit test the DOM?Eugene Lazutkin2008-11-19T03:38:40Z2008-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>