View Javadoc

1   package com.atlassian.pageobjects;
2   
3   /**
4    * Abstracts the technology that can drive the browser.
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  }