I haven't used it, but anything that only tests IE worries me.  Of
course, if you're developing for an intranet application that is
IE-only, it probably won't be an issue.

Another IE-only testing tool I've heard good things about is Watir.
Selenium is a great tool for testing in both IE and Firefox. Both are
available from http://www.openqa.org/.

Matt


On 1/11/07, koevet <[EMAIL PROTECTED]> wrote:

Hello,
I have recently joined a project where they use Watij (http://watij.com/) as
a web application testing tool, similar to Canoo.
It is essentially a tool to automate web testing, using IExplorer and Junit.
This few lines should clarify:

IE ie = new IE();
ie.start("http://www.google.com";);
ie.textField(name,"q").set("Watij");
ie.button("Google Search").click();
ie.link(text,"/whatever/").click();
assertTrue(ie.containsText("mylabel"));


I was wondering if you guys have any experience with this tool (ie.
integrating it in a full automatic build test process).

Thanks
Luciano
--
View this message in context: 
http://www.nabble.com/Watij---anyone-using-it--tf2959054s2369.html#a8278030
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
http://raibledesigns.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to