在FitNesse中包含动态路径

在FitNesse中包含动态路径,fitnesse,Fitnesse,有没有办法在FitNesse中包含动态路径 假设我有以下结构 Credentials - Local - Customer - Admin - Staging - Customer - Admin TestLogin + 在我的TestLogin页面中,我想 !define PLATFORM (Local) !include .Credentials.${PLATFORM}.Customer .... My Test Tables 我还尝试定义路径(

有没有办法在FitNesse中包含动态路径

假设我有以下结构

Credentials
  - Local
    - Customer
    - Admin
  - Staging
    - Customer
    - Admin
TestLogin +
在我的
TestLogin
页面中,我想

!define PLATFORM (Local)
!include .Credentials.${PLATFORM}.Customer
.... 
My Test Tables
我还尝试定义路径(未成功):

!define PATH (.Credentials.${PLATFORM}.Customer)
!include ${PATH}
编辑 严格地说,被接受的答案并不能回答这个问题(似乎不可能),但提供了一个很好的选择。

你试过了吗

!define PLATFORM {!include -c <SampleRoot.Credentials.Local.Customer }
${PLATFORM}
.... 
My Test Tables

!定义PLATFORM{!include-c是否是您试图实现以下目标:


切换重用的“轴”是否可以接受(即创建包含TestLogin的单个套件,并使用符号链接将其包含在每个环境的层次结构中,其中每个层次结构定义了特定于该环境的一些变量(在TestLogin中使用))?

这仍然不允许我在路径中添加变量。我想将
.Local.
部分作为开始时定义的变量。即
!include-c.Root.${variable}.SubSubWiki
,但您可以在不同的层次结构中定义不同的值。