Questions tagged [fitnesse-slim]

The SLIM test system of the FitNesse test framework

The SLIM test system provides an acceptance test authoring and execution framework. It is one of two test systems supported by the FitNesse test framework - the other is the original Fit test system. See http://fitnesse.org/FitNesse.UserGuide.SliM

170 questions
0
votes
3 answers

Change fitNesse port through Eclipse

Using Eclipse, I have created a Fitnesse framework. When I run the simple calculator example (Right Click - Run as java app) my console throws the error - Starting FitNesse on port: 80 SEVERE: FitNesse cannot be started... SEVERE: Port 80 is…
snikt
  • 581
  • 4
  • 11
  • 27
0
votes
1 answer

Is it possible to access Slim symbols from code with FitSharp?

According to FitSharp issue 123 it wasn't possible to in July 2014. I was wondering if this has changed in the years since.
Simon Elms
  • 17,832
  • 21
  • 87
  • 103
0
votes
2 answers

How to add a button in FitNesse Test case?

The scenario is as follow: I want to pause the test when it encounters the Button in the Wiki page Test Scenario. It should wait until the user presses the Button and once the button is pressed the test should continue.
0
votes
1 answer

How to replace default "FrontPage" in Fitnesse to some other test folder/wiki page

Suppose we run fitnesse server on port 8080 by java -jar fitnesse-standalone.jar -p 8080 and then we open fitnesse by localhost:8080 in browser, it points to default fitnesse "FrontPage". I have test/wikipages folder located at same/different place…
0
votes
1 answer

BrowserTest: Need to select a dynamic value from dropdrown

I'm running a Fitnesse/Slim/BrowserTest page that selects from a dropdown, but I know only the index I want, not the text itself. Does browser support selecting indexes? I tried: | select | index=1 | for | id=selectSnapshot | But it never finds the…
CNDyson
  • 1,687
  • 7
  • 28
  • 63
0
votes
1 answer

How to call a jar file in Fitnesse

I have to read one csv file which is extracted from Cassendra. In my ETL project we are planning to use fitnesse to verify the output file. The target data is in csv file. Can anyone tell me how to call jar file in fitnesse. Now i need to call 2 jar…
nilesh
  • 1
  • 1
0
votes
1 answer

Log all method calls in Fitnesse

For debugging purpose, I want to log all method calls made to the fixture code. I've an example where I can log method calls by instrumenting the code using Javassist. But that requires me to pass "-javaagent=<> " as command line parameters, which…
User_77609
  • 33
  • 1
  • 6
0
votes
0 answers

Fitnesse: Slim server fails to start; using Eclipse

I'm trying to get a very basic Fitnesse test to run; using Fitnesse / Slim; Java in Eclipse. Test runs, or at least starts, but doesn't finish; get this error: Unable to start test system 'slim': fitnesse.slim.SlimError: Error SLiM server died…
JohnD
  • 1
  • 2
0
votes
1 answer

FItNesse: Convert Fit fixture to Slim

Looking for a solution to convert Fit fixture for FitNesse test to Slim. I got the Command-Line Fit fixture. Since all my Fitnesse test system is running on Slim I need to have CommandLineFixture as Slim to execute bash script from my test. Any…
0
votes
1 answer

Running FitNesse tests stored in variable

I'm trying to get FitNesse (slim tests running via fitSharp) to process tables stored in a variable. Both approach A & B below render the same on the page, but only approach B will run. Approach A !define test ( | Table:myTest | someValue…
Christoph
  • 4,251
  • 3
  • 24
  • 38
0
votes
2 answers

Fitnesse error when used with spotify maven plugin and docker

I am using spotify maven plugin to create a fitnesse docker image and run it on a container. I am able to bring the fitnesse up and run the tests successfully locally without using spotify maven plugin and docker but not when I use those. I get the…
Raghu
  • 3
  • 3
0
votes
1 answer

Fitnesse throw error convert from Integer to Double when using data from fitnesse table as a variable

I'm started with fitnesse with link http://www.fitnesse.org/FitNesse.FullReferenceGuide.UserGuide.WritingAcceptanceTests.SliM.DynamicDecisionTable But i toke a error when convert from Integer to Double when using data from fitnesse table as a…
huan.le.app
  • 249
  • 1
  • 2
  • 7
0
votes
1 answer

Where is script table fixture reuse documented?

I read somewhere that if I start a table with |script| on a line by itself, without specifying a fixture name, FitNesse / Slim will reuse the fixture from the previous script table: |script|my script table fixture| |check|do something|ok| Then…
legoscia
  • 39,593
  • 22
  • 116
  • 167
0
votes
1 answer

fitnesse variable in suite

I'm facing a problem with Fitnesse. I have the following testcase with these steps. Generate XML send xml read answer return property from answer I have another testcase that should use that return value. Can I set a global variable that I can…
0
votes
1 answer

How to read the connection string from a file in fitnesse?

I want to test different queries, in fitnesse using dbfit, on a table present in different environment. Each environment has a different connection string. So instead of creating multiple pages for each environment(which is again a tedious task…