1 package com.atlassian.pageobjects;
2
3 /**
4 * The implementation for a PageObject
5 */
6 public interface Page
7 {
8 /**
9 * @return The URI, including query string, relative to the base url
10 */
11 String getUrl();
12 }