Hello everyone, I would like to get the test name (i.e. the web page's title) in a fixture (DoFixture) at runtime. My goal is to print out the test name in the...
Hi, Andy, Thanks for your reply, I observed that Loop in decorator.It repeats the entire test for user specified number of times, but My aim is to repeat only...
Use a combination of DoFixture flow mode, ActionFixture, fit.decorator.Loop, and fit.decorator.CopyAndAppendLastRow tables to create a custom test scenario. ...
The FitNesse beta source code at SourceForge provides PAGE_NAME and PAGE_PATH variables accessible via ${PAGE_NAME} and ${PAGE_PATH}. Stay Fit, Andy ...
That is interesting. How can a fixture ask the FitNesse framework to evaluate the value of a variable? Is there something like Fitnesse.evaluate("PAGE_NAME")...
Simply pass ${PAGE_NAME} as a fixture argument, column/row value, or flow mode (e.g., DoFixture) method argument. ... #-- Any Fixture Argument # !| My Special...
Hi, everybody! Although DbFit is a great thing to test databases, there's a rather serious problem with using stored auto-generated ids in Query and Ordered...
Hi All, Since FIT uses Reflection to instantiate the DoFixture class, NOT sure about passing arguments to constructor. !|${WebApplicationFixture}|arg1| ... ...
Not in the traditional sense. The table you have below is correct, but the value "arg1" doesn't get passed to the constructor; it gets tossed into an array...
Hi, We have been using Fitnesse for awhile for application testing in C#. I am starting to do some testing of web applications using Selenium. I am trying to...
Hi, ... yes, but this does not work as you might think. The parameters are stored then in an array, which is available after the constructor was called. ...
It varies by language version. In Java and Python FIT there's an inherited method that returns an array of strings. Python FIT also has a second inherited...
... If you use the SuiteDoFixture wrapper DoFixture I mentioned in my 'combine DoFixture with suite setup' thread (message 10535), your test DoFixture is...
Hello all, I am new to FitNesse and i am testing this SourceCode (in Java): " package fittesting; import fit.ColumnFixture; public class TestMean extends...
I downloaded FitNesse PyFit and CppTestTools. I have no problems with Java and python. But i am a bit confused with c++. Is there any other documentation but...
... You should implement (override the null implementation) the ColumnFixture.reset() method. The reset() method is called before a row is processed. This...
... wrote: What you see is not a bug, but to understand it you have to understand how the ColumnFixture actually works. A Fit table for a ColumnFixture results...
Hi All, Can arguments be passed to DoFixture (JAVA version) via URL Query String? Eg. http://localhost:8085/SandBox.TestEmail?test&myarg=myvalue I need to get...
There is the reset() method that can be overridden to "clear out" or otherwise reset the state as desired. As well, there is an execute() method than can be...
By the time I'd gotten to it, it was already up and stable. Might have been one of the other guys who have server access. My watchdog scripts generally will...
Is it possible to create a table in FitNesse not intended to be executed? I need to display some tabular data as an additional information for the reader. But...
Hi, I'm trying to run fitnesse for the first time and I can't get any of my tests running. I simply get a message that there were zero tests run, and none...
Clare Adscale
adscaleclare@...
Jun 9, 2008 1:17 pm
10569
If a table contains the word "Comment" in the first row the rest of the table is ignored. Comment is actually a class that does nothing. ... On Mon, Jun 9,...
Make sure each page with a test has the "test" property set. (Click the "Properties" link on the left hand side and check the box for "Test"). For the parent...