Skip navigation links
A B C D E F G I J M N O P Q R S T U V W 

G

getAt(String) - Method in class com.jauntium.Element
Returns the attribute value for the specified (case insensitive) attribute name and throws a NotFound Exception if no such attribute name exists or if the attribute value is null; relative URLs are expanded into absolute URLs.
getAtStr(String) - Method in class com.jauntium.Element
Returns the attribute value for the specified (case insensitive) attribute name and returns an empty String no such attribute name exists or if no value exists for the specified attribute name; relative URLs are expanded into absolute URLs.
getAttribute(String) - Method in class com.jauntium.Element
Returns the value for the specified (case insensitive) attribute name OR property name, which may be a null value; all relative URLS are expanded to absolute URLS before being returned.
getAttributeNames() - Method in class com.jauntium.Element
Retrieves a list of the attribute names.
getCell(int, int) - Method in class com.jauntium.Table
Returns the td/th element that exists at the intersection point of the specified column index and the row index.
getCell(String, String) - Method in class com.jauntium.Table
Returns the td/th element that exists at the intersection point of the first column containing text that matches the specified x_regex and the first row containing text that matches the specified y_regex.
getCellCoord(String) - Method in class com.jauntium.Table
Returns the x,y coordinate (colIndex, rowIndex) of the first cell who's visible text matches the specified regular expression.
getChildElements() - Method in class com.jauntium.Element
Returns a list of child Elements, or an empty list if no child elements exist.
getChildNodes() - Method in class com.jauntium.Element
Returns a list of child nodes, or an empty list if no child nodes exist.
getChildNodes() - Method in class com.jauntium.Node
Returns a list of child nodes or an empty list if none exist.
getChildText() - Method in class com.jauntium.Element
Returns a concatenation of all immediate child text nodes (whether or not they are hidden by CSS), or returns an empty String if none exist.
getChildText(String, boolean) - Method in class com.jauntium.Element
Returns a concatenation of all immediate child text nodes (whether or not they are hidden by CSS), or returns an empty String if none exist.
getChosenMenuItem(String) - Method in class com.jauntium.Form
Locates the dropdown menu that has the specified text label and returns the text of the selected menu item.
getCssValue(String) - Method in class com.jauntium.Element
 
getEach(String) - Method in class com.jauntium.Element
Searches child elements (not all descendants) and retrieves those that were found to match the query.
getEach(String) - Method in class com.jauntium.Elements
Searches child elements (not all descendants) and retrieves those that were found to match the query.
getElement(int) - Method in class com.jauntium.Element
Returns the child element at the position denoted by the specified index.
getElement(int) - Method in class com.jauntium.Elements
Returns the element at the specified index.
getFieldValue(String) - Method in class com.jauntium.Form
Returns the value of the textfield, password field, or textarea field that has the specified text label.
getFirst(String) - Method in class com.jauntium.Element
Searches only child elements (not all descendants) and retrieves the first child element that was found to match the query.
getFirst(String) - Method in class com.jauntium.Elements
Searches only child elements (not all descendants) and retrieves the first child element that was found to match the query.
getForm(int) - Method in class com.jauntium.Document
Creates and returns a Form object to represent the HTML form denoted by the specified formIndex.
getForm(String) - Method in class com.jauntium.Document
Returns an instance of class Form for the first form in the document that is matched by the specified tagQuery.
getForm(Element) - Method in class com.jauntium.Document
 
getForm(WebElement) - Method in class com.jauntium.Document
 
getFormByButtons(String...) - Method in class com.jauntium.Document
Returns a Form object for the first form Element in the document that contains buttons who's text/values are matched (case insensitive, whitespace-normalized) by the specified text, or throws a NotFound Exception.
getFormsCount() - Method in class com.jauntium.Document
Returns the number of forms in the document.
getLocation() - Method in class com.jauntium.Browser
Returns the current URL.
getLocation() - Method in class com.jauntium.Element
 
getNodeName() - Method in class com.jauntium.Node
Returns the nodeName.
getNodeType() - Method in class com.jauntium.Node
Returns the node type.
getNodeValue() - Method in class com.jauntium.Node
Returns the node value.
getParent() - Method in class com.jauntium.Element
Returns the parent element or null if a parent element does not exist.
getPrefix() - Method in class com.jauntium.Node
Returns the node prefex.
getRect() - Method in class com.jauntium.Element
 
getRoot() - Method in class com.jauntium.Element
Return the ancestor Element who's parent is null (ie, the root element).
getScreenshotAs(OutputType<X>) - Method in class com.jauntium.Element
 
getSize() - Method in class com.jauntium.Element
 
getSource() - Method in class com.jauntium.Browser
 
getTable(String) - Method in class com.jauntium.Document
Returns an instance of type Table that relates to the first table in the document that matches the specified tagQuery.
getTable(Element) - Method in class com.jauntium.Document
 
getTable(WebElement) - Method in class com.jauntium.Document
 
getTableByText(String...) - Method in class com.jauntium.Document
Returns a Table object for the first table Element in the document that contains th/td elements who's visible text is matched by the specified text, or throws a NotFound Exception.
getTableElement() - Method in class com.jauntium.Table
Returns the table element for this Table.
getTagName() - Method in class com.jauntium.Element
 
getText() - Method in class com.jauntium.Element
Returns the concatentation of all visible text within this element, including all the visible text of all descendants; text that is not visible due to CSS rules is excluded.
getTextContent() - Method in class com.jauntium.Element
 
getTextContent(String, boolean, boolean) - Method in class com.jauntium.Element
 
getTextFromColumn(int) - Method in class com.jauntium.Table
Returns a List containing the visible text of the cells in the specified column index; text values are obtained using Element.getText() and are trimmed of whitespace.
getTextFromColumn(String) - Method in class com.jauntium.Table
Returns a List containing the visible text of the cells from the target column, where the target column is the first one having a cell who's visible text matches the specified (case-insensitive) regex (using Matcher.matches); returned text values are obtained using Element.getText() and are trimmed of whitespace;
getTextFromColumns(int, int) - Method in class com.jauntium.Table
Extracts text data from two columns and returns a Map; the keys are the visible text obtained from the cells in the specified column Index and the values are the visible text obtained from cells in the specified column index; text values for both the keys and values are extracted using Element.getText() and are trimmed of whitespace; duplicate keys are overwritten.
getTextFromRow(int) - Method in class com.jauntium.Table
Returns a List containing the visible text of the cells from the row specified by the rowInex, where indexing begins at 0; text values are obtained using Element.getText() and are trimmed of whitespace;
getTextFromRow(String) - Method in class com.jauntium.Table
Returns a List containing the visible text of the cells from the target row, where the target row is the first one having a cell who's visible text matches the specified (case-insensitive) regex (using Matcher.matches); returned text values are obtained using Element.getText() and are trimmed of whitespace;
getWindowHandle() - Method in class com.jauntium.Browser
 
getWindowHandles() - Method in class com.jauntium.Browser
 
A B C D E F G I J M N O P Q R S T U V W 
Skip navigation links