1 package com.atlassian.webdriver.confluence.page;
2
3
4 import com.atlassian.pageobjects.page.HomePage;
5 import com.atlassian.webdriver.confluence.component.header.ConfluenceHeader;
6
7 /**
8 * Page object implementation for the Dashbaord page in Confluence.
9 * TODO: extend to handle more the page properly.
10 */
11 public class DashboardPage extends ConfluenceAbstractPage implements HomePage<ConfluenceHeader>
12 {
13 private static String URI = "/dashboard.action";
14
15 public String getUrl()
16 {
17 return URI;
18 }
19 }