Yes, we had problems with the scriptaculous library loading, but one of the developers solved it like this: Instead of including the Scriptaculous javascript libraries in the web page like this: <script type="text/ javascript" src="javascript/libs/scriptaculous/scriptaculous.js?load=effects,controls"></script> where "load=effects,controls" tells scriptaculous which of its libraries to load, include the problematic scriptaculous libraries explicitly like this: <script type="text/ javascript" src="javascript/libs/scriptaculous/effects.js"></script> <script type="text/ javascript" src="javascript/libs/scriptaculous/scriptaculous.js?load=controls"></script> In our case "effects. js" was causing a problem, but the problem is resolved by referencing the effects.js script explicitly before referencing the main scriptaculous.js script. I hope this helps some of you. Janet
----- Original Message ----- From: "Soula, William" <[EMAIL PROTECTED]> Date: Wednesday, July 30, 2008 5:54 am Subject: RE: [Webtest] Webtest Release 2.7 To: "[email protected]" <[email protected]>, Oliver Rossbach <[EMAIL PROTECTED]> > Build 1714 has htmlunit 2.2 Good luck with it as several > ppl (including me) have had trouble with the new htmlunit. > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:webtest- > [EMAIL PROTECTED] On Behalf Of Oliver Rossbach > Sent: Wednesday, July 30, 2008 4:09 AM > To: [email protected] > Subject: [Webtest] Webtest Release 2.7 > > Hello, > > first of all I would like to thank you for the good work so far! > > Our new website uses Ajax frameworks like 'prototype' or > 'scriptaculous' heavily. > > With Webtest Release 2.6 it is not possible to activate > JavaScript on our site because of parsing errors with HtmlUnit. > > When will the next Webtest Release be released which uses > HtmlUnit 2.2? > > Thanks in advance > > -- > Oliver Rossbach > ROSCONSULT - E-Business-Beratung und Softwareentwicklung > > Heinrichstrasse 51 > 44536 Lünen > > Fest: +49 (0)2933 90 27 10 > Mobil: +49 (0)177 35 12 030 > > E-Mail: [EMAIL PROTECTED] > Skype: o.rossbach > www.rosconsult.de > > _______________________________________________ > WebTest mailing list > [email protected] > http://lists.canoo.com/mailman/listinfo/webtest > _______________________________________________ > WebTest mailing list > [email protected] > http://lists.canoo.com/mailman/listinfo/webtest >

