-
searchText(String text)
-
scrollUp/Down()
-
clickOnText(String text)
-
takeScreenshot()
-
waitForText(String text)
-
clickOnWebElement(By by)
: It clicks on the WebElement matching the specified By class object. -
waitForWebElement(By by)
: It waits for the WebElement matching the specified By class object. -
getWebElement(By by, int index)
: It returns a WebElement matching the specified By class object and index. -
enterTextInWebElement(By by, String text)
: It enters the text in a WebElement matching the specified By class object. -
typeTextInWebElement(By by)
: It types the text in a WebElement matching the specified By class object. In this method, the program actually types the text letter by letter using the keyboard, whereas enterTextInWebElement directly enters the text in the particular. -
clearTextInWebElement(By by)
: It clears the text in a WebElement matching the specified By class object. -
getCurrentWebElements(By by)
: It returns the ArrayList of WebElements displayed in the active web view matching the specified By class object.
Last active
January 28, 2016 13:04
-
-
Save davidmigloz/396f5728079c82b5bd39 to your computer and use it in GitHub Desktop.
Robotium methods to test web views.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment