我可以为 FitNesse 测试表单元格添加颜色吗?
我希望能够向 FitNesse 表格单元格(有时是整行)添加彩色背景,以增强其可读性。 如果运行测试页时这些颜色被覆盖,我很高兴。 有没有办法做到这一点?
I would like to be able to add coloured backgrounds to FitNesse table cells (sometimes entire rows) to enhance their readability. I'm happy if these colours are overwritten when a test page is run. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
小部件将自定义样式应用到任何fitnesse 单元格
您可以使用!style_(text)
。 其中 (text) 是您定义的某个 css 类的名称。 您可以在 格式化健身 wiki 页面查看各种选项http://www.fitnesse.org" rel="nofollow noreferrer">fitnesse.org
编辑:看起来样式小部件仅适用于格式化文本,而不是固定表中的文本。 例如:
不将ValueSetId的样式设置为strike class。 但删除 ! 从表格本身,这样确实有效:
您也可以尝试直接应用样式,如下所示:
这使用输出 HTML 标签的小部件。 我尝试将其应用到行,但它不起作用:(您可能必须标记每个单独的元素。
You can apply custom styles to any fitnesse cell by using the
!style_(text)
widgit. Where (text) is the name of some css class you have defined. You can see the various options for formatting the fitnesse wiki pages at fitnesse.org
EDIT : It looks as though the style widgit is only useful for formatting text not in a fixture table. For example:
does not set the style of ValueSetId to the strike class. But removing the ! from the table itself like so does work:
You could also try applying the style directly like so:
This uses the widgit that outputs the HTML tags. I tried applying it to the row but it did not work though :( You might have to tag each individual element.