[Jwebunit-users] Fit Plugin - build

2004-07-20 Thread Chris Barham
Hi, I am unable to download/build the FitPlugin - is this obsolete now? I was hoping to use the new version with Fitnesse. Can anyone assist by sending me the plugin to upload into Fitnesse? Regards Chris --- This SF.Net email is sponsored by

[Jwebunit-users] Vacation

2004-07-20 Thread Martijn Dashorst
Hi! Sorry for the cross-post, but this way I only have to type/send this mesasge once. I will be on vacation for the coming 3 weeks, that is, at least until august 9th (2004). Cheers! Martijn Dashorst --- This SF.Net email is sponsored by BEA

Re: [Jwebunit-users] Selecting a specific link in a table

2004-07-20 Thread Laurent Duperval
Nick Neuberger wrote: Ah. I see your trouble. I didn't know clickLinkWithText("L") is a "contains" search. My bad. It looks like the following is provided by httpunit. resp.getLinkWith(linkText); resp.getLinkWithID(linkText); resp.getLinkWithImageText(linkText); resp.getLinkWithName(linkText); Y

RE: [Jwebunit-users] Selecting a specific link in a table

2004-07-20 Thread Nick Neuberger
Ah. I see your trouble. I didn't know clickLinkWithText("L") is a "contains" search. My bad. It looks like the following is provided by httpunit. resp.getLinkWith(linkText); resp.getLinkWithID(linkText); resp.getLinkWithImageText(linkText); resp.getLinkWithName(linkText); Yeah. I agree, a nee

Re: [Jwebunit-users] Selecting a specific link in a table

2004-07-20 Thread Laurent Duperval
Nick Neuberger wrote: You should still be able to use my suggestion, I think anyway. ;-) All of our hyperlinks are completely dynamic as well with no problems. Our href attributes for all of our links are completely dynamicand to long. In our application we always have at least 3 or four "de

RE: [Jwebunit-users] Testing identical pages with different local es

2004-07-20 Thread Nick Neuberger
localize all of your "string" attributes in your test cases into a specific local file. load a specific local prior to running your unit tests. if eclipse, then use localization refactoring tool. Never used it but this would be the way I would go Nick > -Original Message- > From: L

RE: [Jwebunit-users] Selecting a specific link in a table

2004-07-20 Thread Nick Neuberger
You should still be able to use my suggestion, I think anyway. ;-) All of our hyperlinks are completely dynamic as well with no problems. Our href attributes for all of our links are completely dynamicand to long. In our application we always have at least 3 or four "delete" operations but

[Jwebunit-users] Testing identical pages with different locales

2004-07-20 Thread Laurent Duperval
Hi, I have about 100 tests written for my application. I want to run the exact same tests, but on a page with a different locale. How can I go about doing this, without duplicating all my test code? L --- This SF.Net email is sponsored by BEA W

Re: [Jwebunit-users] Selecting a specific link in a table

2004-07-20 Thread Laurent Duperval
Nick Neuberger wrote: Use: clickLinkWithText(String linkText, int index) clickLinkWithText("Delete", 2) This will click the 2nd link with the "Delete" as the text. Not quite. If you have dynamically generated links on a page (like I do) this is very fragile. I want something like this. If I hav