FitNesse. UserGuide. FitLibraryUserGuide. FaQ4Programmers.
KeepTags [add child]

Sometimes, the HTML tags used within a table cell are important to the test.

fitlibrary.specify.DoWithTags
check tagged text bold

check tag text bold bold

check tag text
one
one

check tag text
  • one
  • two
  • one
  • two
check tag text bold bold


public class DoWithTags extends DoFixture {
public TaggedString taggedText() {
return new TaggedString("<b>bold</b>");
}
public TaggedString tagText(TaggedString s) {
return s;
}
}