BrowserObject Class Base class for all objects that are contained within a BrowserApplication.
BrowserWindow Class A browser window is the top-level container for a web page. It exposes the DOM tree through DomElements. E.g. a tab in IE7,
an embedded browser control in SWT.
DomButton Class A DomButton represents all DOM elements that were specified using one of the following tags: <input type='submit'>, <input
type='reset'>, <input type='button'> or <button>.
DomCheckBox Class A DomCheckBox represents all DOM elements that were specified using <input type='checkbox'> tag.
DomDataList Class A DomDataList represents an input element with pre-defined values in a <datalist> element.
DomElement Class A DomElement represents any element in the DOM tree.
DomForm Class A DomForm represents all DOM elements that were specified using the <form> tag. All methods and properties in this class are
not supported for mobile web applications.
DomLink Class A DomLink represents all DOM elements that were specified using the <a> tag.
DomListBox Class A DomListBox represents all DOM elements that were specified using the <select> tag.
DomRadioButton Class A DomRadioButton represents all DOM elements that were specified using <input type='radio'> tag.
DomTable Class A DomTable represents the <table> tag. All methods and properties in this class are not supported for mobile web applications.
DomTableRow Class A DomTableRow represents the <tr> tag. All methods and properties in this class are not supported for mobile web applications.
DomTextField Class A DomTextField represents DOM elements that were specified using one of the following tags: <input type='text'>, <input type='password'>,
<input type='file'> or <textarea>.