View Javadoc

1   package br.com.caelum.seleniumdsl;
2   
3   public interface ContentTag {
4   
5   	/**
6   	 * @param content
7   	 *            the string to be searched
8   	 * @return true if the tag contains the string
9   	 */
10  	public boolean contains(String content);
11  
12  	/**
13  	 * @return if this element exists on the page
14  	 */
15  	public boolean exists();
16  
17  	public String innerHTML();
18  
19  }