2011-12-22 06:09:41 -08:00
|
|
|
#filter substitution
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-12-22 06:09:41 -08:00
|
|
|
|
|
|
|
package @ANDROID_PACKAGE_NAME@;
|
|
|
|
|
2012-02-15 06:56:20 -08:00
|
|
|
/**
|
|
|
|
* Element provides access to a specific UI view (android.view.View).
|
|
|
|
* See also Driver.findElement().
|
|
|
|
*/
|
2011-12-22 06:09:41 -08:00
|
|
|
public interface Element {
|
2012-02-15 06:56:20 -08:00
|
|
|
|
|
|
|
/** Click on the element */
|
|
|
|
void click();
|
|
|
|
|
|
|
|
/** Returns true if the element is currently displayed */
|
|
|
|
boolean isDisplayed();
|
|
|
|
|
|
|
|
/** Returns the text currently displayed on the element */
|
|
|
|
String getText();
|
|
|
|
|
|
|
|
/** Returns the view ID */
|
|
|
|
Integer getId();
|
2011-12-22 06:09:41 -08:00
|
|
|
}
|