|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.confluence.it.content.ViewContentBean
public class ViewContentBean
Represents a View page for a Page or News.
| Field Summary | |
|---|---|
static java.lang.String |
HIDE_CHILDREN_ID
|
static java.lang.String |
SHOW_CHILDREN_ID
|
static java.lang.String |
SHOW_COMMENTS_ID
|
protected java.lang.String |
title
|
static java.lang.String |
VIEW_SOURCE_LINK_ID
|
protected net.sourceforge.jwebunit.junit.WebTester |
webTester
|
| Method Summary | |
|---|---|
EditContentBean |
addComment()
|
boolean |
canExportPdf()
Returns true if the Export PDF link is present. |
EditContentBean |
createBlogPost()
|
EditContentBean |
createPage()
|
EditContentBean |
edit()
|
EditContentBean |
editComment(java.lang.String commentId)
|
void |
ensureChildrenAreShown()
Make sure the children are showing. |
void |
ensureCommentsAreShown()
|
java.util.List |
getChildren()
Return all the children names in the order they appear on the page. |
java.util.List |
getComments()
Gets the first 20 comments (if any) on the current page. |
CommentBean |
getFocusedComment()
|
java.util.Date |
getRequestTime()
|
java.lang.String |
getTitle()
|
boolean |
isFavourite()
Returns true if the unfavourite link is present, and false if the favourite link is present. |
boolean |
isWatching()
Returns true if the unwatch link is present, and false if the watch link is present. |
boolean |
isWatchingSpace()
Returns true if the space containing the content is being watched. |
void |
remove()
|
void |
removeComment(java.lang.String commentId)
|
EditContentBean |
replyToComment(java.lang.String commentId)
|
void |
toggleWatch()
Clicks the "Watch" link. |
ViewAttachmentsBean |
viewAttachments()
|
static ViewContentBean |
viewBlogPost(net.sourceforge.jwebunit.junit.WebTester tester)
Factory method to return a ViewContentBean pointing at the current location of the web tester. |
static ViewContentBean |
viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
long contentId)
Factory method to return a ViewContentBean for the blog post with the given content ID. |
static ViewContentBean |
viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String postTitle)
Factory method to return a ViewContentBean for the given post and space. |
ContentInfoBean |
viewInfo()
|
static ViewContentBean |
viewPage(net.sourceforge.jwebunit.junit.WebTester webTester)
Factory method to return a ViewContentBean pointing at the current location of the web tester. |
static ViewContentBean |
viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
long contentId)
Factory method to return a ViewContentBean for the page with the given content ID. |
static ViewContentBean |
viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey)
Factory method to return a ViewContentBean for the homepage of the given space. |
static ViewContentBean |
viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String pageTitle)
Factory method to return a ViewContentBean for the given page and space. |
static ViewContentBean |
viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String pageTitle,
boolean commentsOn)
Factory method to return a ViewContentBean for the given page and space, with comments specifically requested on or off. |
static ViewContentBean |
viewPersonalSpace(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String username)
|
static ViewContentBean |
viewSpaceHomepage(net.sourceforge.jwebunit.junit.WebTester tester,
java.lang.String spaceName)
Deprecated. As it uses the space name rather than spacekey. Use viewPage(WebTester, String) instead. |
void |
viewWatchingSpace()
Clicks the "Watching Space" link on the Tools menu, which loads the Space Advanced page where space-level watching is administered. |
void |
viewWikiMarkup()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final net.sourceforge.jwebunit.junit.WebTester webTester
public static final java.lang.String HIDE_CHILDREN_ID
public static final java.lang.String SHOW_CHILDREN_ID
public static final java.lang.String VIEW_SOURCE_LINK_ID
public static final java.lang.String SHOW_COMMENTS_ID
protected final java.lang.String title
| Method Detail |
|---|
public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester)
public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester tester)
public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String postTitle)
public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
long contentId)
public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
long contentId)
public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey)
public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String pageTitle)
public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String spaceKey,
java.lang.String pageTitle,
boolean commentsOn)
commentsOn - specifies value of the showComments parameter
public static ViewContentBean viewSpaceHomepage(net.sourceforge.jwebunit.junit.WebTester tester,
java.lang.String spaceName)
viewPage(WebTester, String) instead.
public static ViewContentBean viewPersonalSpace(net.sourceforge.jwebunit.junit.WebTester webTester,
java.lang.String username)
public java.lang.String getTitle()
public EditContentBean createPage()
public EditContentBean createBlogPost()
public EditContentBean edit()
public void remove()
public EditContentBean addComment()
public java.util.List getComments()
CommentBeanspublic EditContentBean replyToComment(java.lang.String commentId)
public EditContentBean editComment(java.lang.String commentId)
public void removeComment(java.lang.String commentId)
public ViewAttachmentsBean viewAttachments()
public ContentInfoBean viewInfo()
public void ensureCommentsAreShown()
public void ensureChildrenAreShown()
public java.util.List getChildren()
ensureChildrenAreShown(), so if you want to test showing/hiding the children, use something else.
public void viewWikiMarkup()
public void toggleWatch()
public void viewWatchingSpace()
public boolean isWatching()
junit.framework.AssertionFailedError - if neither link is present (eg if space is watched).public boolean isWatchingSpace()
public boolean isFavourite()
junit.framework.AssertionFailedError - if neither link is present.public boolean canExportPdf()
public java.util.Date getRequestTime()
public CommentBean getFocusedComment()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||