View Javadoc

1   package com.atlassian.pageobjects.browser;
2   
3   /**
4    * A browser-aware component.
5    *
6    * @since 2.1
7    */
8   public interface BrowserAware
9   {
10  
11      /**
12       * Get browser associated with this component.
13       *
14       * @return browser
15       */
16      Browser getBrowser();
17  }