Srivinas, Presumably you built your fixture using ThoughtWorks.Selenium.Core.dll . Try including the .DLL in your paths, not the .JAR . Works for me! As you...
Paul and Chris, Thanks for your responses. I finally solved it and let me share my mistakes so that others may benefit from this. It may be obvious to others,...
Use the summary built-in action. I think it's still there, but I haven't checked the code yet. ... use ... John Roth Python FIT ... From: "Srinivas Pavani"...
Hello list, I have a SetFixture which checks that after some operation, the correct record is the only one in a database table. The basic flow of the test is...
We're having problems with our tests getting OOM errors. We ran the suite with a memory profiler and saw that the memory use just keeps going up and up....
I have seen the problem before on fitnesse.org and at some clients who have VERY large tests. First thing I would try is to fiddle with the -Xms and -Xmx java ...
Tuning the -Xmx/-Xms option might temporarily help, but in my case, the suite execution was lengthend by hours - the garbage collector was glowing. One reason...
Hi. It definitly should be added to the trunk. But I also suggest that it be an optional feature. Florian Hehlen ... From: Andreas Thiel Date: 3.10.06 10:05 ...
We definitely have large tests. We have been using the -Xms and -Xmx command line options, but apparently we've gone beyond that workaround! I'll break up the...
I agree that it's probably the caching of results but just a heads up for a gotcha I ran into a couple of years ago. When working with Java and seeing OOM...
I ran into this issue with the release 20060719. When we rolled back to release 20050731, I didnt run into it again. ... have... ... one up ... all ... suite ...
Hi Terence, Good question, as it gets to the heart of an interesting issue of storytest expressiveness. Unfortunately, SetFixture only tests for specific...
In the latest (delta) version of Java FitLibrary, you'll need to add ... And in your fixturing code, have the method: public Object summary() { return new...
In the next release of (Java) FitLibraryServer, the reports returned to FitNesse are drastically shortened. I have changed it so that the reports for passing...
We haven't put in the new release because our own web app doesn't work with Java 1.5 (something to do with iPlanet) so we haven't upgraded Java. ... we've ... ...
I split up my big suite today to try to fix the OOM errors. I used the 'refactor' feature to move the tests. I was horrified to discover, after I was all...
Hi Lisa, That may be a problem with the latest FitLibraryServer then, as (I think) it depends on a simple change to fit.Fixture in the latest FitNesse release....
The refactoring tries to be helpful by finding all page references relating to the page you are moving and adjusting them. Usually this means using fully...
While at SD this year I spoke to David Chelimsky, who suggested that we store our Fitnesse tests in our source repository and have developers pull from their...
I notice that when a page is included via the !include statement, the links in the page aren't corrected to be valid in the parent page. For example, if in...
!include is a simple means to include content. The content that is included is treated as though it is part of the including page. Your observations are...
I don't know if this can help you, but we've had a similar issue: we had an EmailChecker, that is a sub-sub-...-subclass of DoFixture that was capable of...
I would like to be able to use Windows authentication to identify users and control access. We run on a windows domain and it would be nice to be able to pass...
I'm trying to understand what makes a row equal to the values retrieved through the query() method. I don't really understand it. I had to create a wrapper...