View Javadoc

1   package com.atlassian.selenium.visualcomparison;
2   
3   import com.atlassian.annotations.PublicApi;
4   
5   import javax.annotation.Nonnull;
6   
7   /**
8    * Represents an HTML element with access to the outer HTML that makes up for that element.
9    */
10  @PublicApi
11  public interface ScreenElement
12  {
13      /**
14       * @return the outer HTML of the element, as string
15       */
16      @Nonnull
17      String getHtml();
18  }