fhoeben/sample-fitnesse-project

Parameter problem.

blling opened this issue · 2 comments

These parameters not defined, what are the used for ?

<systemPropertyVariables>
    <fitnesseSuiteToRun>${fitnesseSuiteToRun}</fitnesseSuiteToRun>
    <seleniumDefaultTimeout>${seleniumDefaultTimeout}</seleniumDefaultTimeout>
     <seleniumGridUrl>${seleniumGridUrl}</seleniumGridUrl>
    <seleniumBrowser>${seleniumBrowser}</seleniumBrowser>
    <seleniumDriverClass>${seleniumDriverClass}</seleniumDriverClass>
    <seleniumCapabilities>${seleniumCapabilities}</seleniumCapabilities>
    <seleniumJsonCapabilities>${seleniumJsonCapabilities}</seleniumJsonCapabilities>
</systemPropertyVariables>

They are present so a run in a build server can change the suite to be run, and the selenium configuration used without any changes in the code base.
See https://github.com/fhoeben/hsac-fitnesse-fixtures/wiki#2-run-on-build-server and https://github.com/fhoeben/hsac-fitnesse-fixtures/wiki/3.1.-Build-Server-Selenium-Configuration

Get it, thanks !