1 package com.atlassian.pageobjects;
2
3 /**
4 * The object used for implementing page objects
5 */
6 public interface Tester
7 {
8 /**
9 * Goes to a URL by changing the browser's location
10 * @param url The url to change to
11 */
12 void gotoUrl(String url);
13 }