A B C D F G H I L N S T U V W

A

actions - Variable in class io.ddavison.selenium.AutomationTest
 
AutomationTest - Class in io.ddavison.selenium
the base test that includes all Selenium 2 functionality that you will need to get you rolling.
AutomationTest() - Constructor for class io.ddavison.selenium.AutomationTest
 

B

Browser - Enum in io.ddavison.selenium
An enumeration of Browsers that Selenium 2 uses.

C

check(String) - Method in class io.ddavison.selenium.AutomationTest
Check a checkbox, or radio button
check(By) - Method in class io.ddavison.selenium.AutomationTest
Check a checkbox, or radio button
click(String) - Method in class io.ddavison.selenium.AutomationTest
Click an element.
click(By) - Method in class io.ddavison.selenium.AutomationTest
Click an element.
closeWindow(String) - Method in class io.ddavison.selenium.AutomationTest
Close an open window.
closeWindow() - Method in class io.ddavison.selenium.AutomationTest
Closes the current active window.
Config - Annotation Type in io.ddavison.selenium
 

D

driver - Variable in class io.ddavison.selenium.AutomationTest
 

F

findFile(String) - Static method in class io.ddavison.selenium.AutomationTest
 

G

get(String) - Method in class io.ddavison.selenium.AutomationTest
Get a variable from the data warehouse.

If the key is not set, then use get(String, String)
get(String, String) - Method in class io.ddavison.selenium.AutomationTest
Get a variable from the data warehouse.
getAttribute(String, String) - Method in class io.ddavison.selenium.AutomationTest
Get an attribute of an element
getAttribute(By, String) - Method in class io.ddavison.selenium.AutomationTest
Get an attribute of an element
getText(String) - Method in class io.ddavison.selenium.AutomationTest
Get the text of an element.
getText(By) - Method in class io.ddavison.selenium.AutomationTest
Get the text of an element.
goBack() - Method in class io.ddavison.selenium.AutomationTest
Navigates the browser back one page.

H

hoverOver(String) - Method in class io.ddavison.selenium.AutomationTest
Hover over an element.
hoverOver(By) - Method in class io.ddavison.selenium.AutomationTest
Hover over an element.

I

io.ddavison.selenium - package io.ddavison.selenium
 
isChecked(String) - Method in class io.ddavison.selenium.AutomationTest
Checks if the element is checked or not.
isChecked(By) - Method in class io.ddavison.selenium.AutomationTest
Checks if the element is checked or not.
isPresent(String) - Method in class io.ddavison.selenium.AutomationTest
Checks if the element is present or not.
isPresent(By) - Method in class io.ddavison.selenium.AutomationTest
Checks if the element is present or not.

L

log - Static variable in class io.ddavison.selenium.AutomationTest
 
log(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as information
logDebug(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as debug
logError(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as an error
logFatal(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as fatal
logInfo(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as information
logWarn(Object) - Method in class io.ddavison.selenium.AutomationTest
Log something as a warning

N

navigateTo(String) - Method in class io.ddavison.selenium.AutomationTest
Navigates to an absolute or relative Url.

S

selectOptionByText(String, String) - Method in class io.ddavison.selenium.AutomationTest
Selects an option from a dropdown (<select> tag) based on the text displayed.
selectOptionByText(By, String) - Method in class io.ddavison.selenium.AutomationTest
Selects an option from a dropdown (<select> tag) based on the text displayed.
selectOptionByValue(String, String) - Method in class io.ddavison.selenium.AutomationTest
Selects an option from a dropdown (<select> tag) based on the value.
selectOptionByValue(By, String) - Method in class io.ddavison.selenium.AutomationTest
Selects an option from a dropdown (<select> tag) based on the value.
setText(String, String) - Method in class io.ddavison.selenium.AutomationTest
Clears the text from a text field, and sets it.
setText(By, String) - Method in class io.ddavison.selenium.AutomationTest
Clears the text from a text field, and sets it.
store(String, String) - Method in class io.ddavison.selenium.AutomationTest
Put a variable in the data warehouse.
switchToDefaultContent() - Method in class io.ddavison.selenium.AutomationTest
Switch back to the default content (the first window / frame that you were on before switching)
switchToFrame(String) - Method in class io.ddavison.selenium.AutomationTest
Switches to a frame or iframe.
switchToFrame(int) - Method in class io.ddavison.selenium.AutomationTest
Switches to a frame based on the index it comes.
switchToWindow(String) - Method in class io.ddavison.selenium.AutomationTest
Switch's to a window that is already in existance.

T

teardown() - Method in class io.ddavison.selenium.AutomationTest
 

U

uncheck(String) - Method in class io.ddavison.selenium.AutomationTest
Uncheck a checkbox, or radio button
uncheck(By) - Method in class io.ddavison.selenium.AutomationTest
Uncheck a checkbox, or radio button.

V

validateAttribute(String, String, String) - Method in class io.ddavison.selenium.AutomationTest
Validates an attribute of an element.

Example:
<input type="text" id="test" />

.validateAttribute("input#test", "type", "text") // validates that the "type" attribute equals "test"
validateAttribute(By, String, String) - Method in class io.ddavison.selenium.AutomationTest
Validates an attribute of an element.

Example:
<input type="text" id="test" />

.validateAttribute(css("input#test"), "type", "text") // validates that the "type" attribute equals "test"
validateChecked(String) - Method in class io.ddavison.selenium.AutomationTest
Validate that a checkbox or a radio button is checked.
validateChecked(By) - Method in class io.ddavison.selenium.AutomationTest
Validate that a checkbox or a radio button is checked.
validateFalse(boolean) - Method in class io.ddavison.selenium.AutomationTest
Validates that a specific condition is false
validateNotPresent(String) - Method in class io.ddavison.selenium.AutomationTest
Validates that an element is not present.
validateNotPresent(By) - Method in class io.ddavison.selenium.AutomationTest
Validates that an element is not present.
validatePresent(String) - Method in class io.ddavison.selenium.AutomationTest
Validates that an element is present.
validatePresent(By) - Method in class io.ddavison.selenium.AutomationTest
Validates that an element is present.
validateText(String, String) - Method in class io.ddavison.selenium.AutomationTest
Validate that the text of an element is correct.
validateText(By, String) - Method in class io.ddavison.selenium.AutomationTest
Validate that the text of an element is correct.
validateTextNot(String, String) - Method in class io.ddavison.selenium.AutomationTest
Validate that the text of an element is not matching text.
validateTextNot(By, String) - Method in class io.ddavison.selenium.AutomationTest
Validate that the text of an element is not matching text.
validateTextNotPresent(String) - Method in class io.ddavison.selenium.AutomationTest
Validate that some text is nowhere on the page.
validateTextPresent(String) - Method in class io.ddavison.selenium.AutomationTest
Validate that text is present somewhere on the page.
validateTrue(boolean) - Method in class io.ddavison.selenium.AutomationTest
Validates that a specific condition is true
validateUnchecked(String) - Method in class io.ddavison.selenium.AutomationTest
Validate that a checkbox or a radio button is unchecked.
validateUnchecked(By) - Method in class io.ddavison.selenium.AutomationTest
Validate that a checkbox or a radio button is unchecked.
validateUrl(String) - Method in class io.ddavison.selenium.AutomationTest
Validate the Url
valueOf(String) - Static method in enum io.ddavison.selenium.Browser
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.ddavison.selenium.Browser
Returns an array containing the constants of this enum type, in the order they are declared.

W

waitForElement(By) - Method in class io.ddavison.selenium.AutomationTest
Private method that acts as an arbiter of implicit timeouts of sorts..
waitForWindow(String) - Method in class io.ddavison.selenium.AutomationTest
Waits for a window to appear, then switches to it.

A B C D F G H I L N S T U V W

Copyright © 2014. All rights reserved.