"testhtmlfile", ".html",
"<html><title>Test content</title>" +
"<br>This is <b>Bold</b> text</html>"
);
String testFileName = htmlfile.getName();
VersionDocumentsTab versionDocumentsTab = new ProjectWorkFlow()
.goToProjectByName("html-project")
.gotoVersion("html-upload")
.gotoSettingsTab()
.gotoSettingsDocumentsTab()
.pressUploadFileButton()
.enterFilePath(htmlfile.getAbsolutePath())
.submitUpload()
.clickUploadDone();
VersionDocumentsPage versionDocumentsPage =
versionDocumentsTab.gotoDocumentTab();
assertThat(versionDocumentsPage
.sourceDocumentsContains(htmlfile.getName()))
.as("Document shows in table");