ElementType Enumeration

Progress Software Corporation - Testing Framework 2018.1 Automation Infrastructure
The element type of an element within the Dom.

Namespace:  ArtOfTest.WebAii.ObjectModel
Assembly:  ArtOfTest.WebAii (in ArtOfTest.WebAii.dll) Version: 2018.1.116.0 (2018.1.116.0)
Syntax

public enum ElementType
Members

  Member nameValueDescription
CascadingStyleSheet0 The element is a css style sheet. For example ( <link type="text/css"> or <style></style> )
Script1 The element is a script. For example ( <script></script> )
Table2 The element is a table. For example ( <table></table> )
Div3 The element is a Div. For example ( <div></div> )
FrameSet4 The element is a Frameset. For example ( <frameset></frameset> )
Frame5 The element is a Frame. For example ( <frame></frame> )
IFrame6 The element is an IFrame. For example ( <iframe></iframe> )
Anchor7 The element is an anchor. For example ( <a href="somefile.htm">click me</a> )
Image8 The element is an image. For example ( <img></img> )
Map9 The element is an imagemap. For example ( <map></map> )
Link10 The element is a link. For example ( <link></link> )
TestRegion11 The element is a testregion. For example ( <testregion id="foo"></testregion> or <!--testregion id="foo"--><!--/testregion--> )
Select12 The element is a select. For example ( <select></select> )
Input13 The element is an input. For example ( <input></input> )
TextArea14 The element is a textarea. For example ( <textarea></textarea> )
TableHeader15 The element is a table header. For example ( <th></th> )
TableCell16 The element is a table cell. For example ( <td></td> )
TableRow17 The element is a table row. For example ( <tr></tr> )
TableColumn18 The element is a table column. For example ( <col></col> )
Form19 The element is a form. For example ( <form></form> )
OrderedList20 The element is an ordered list. For example ( <ol></ol> )
UnorderedList21 The element is an unordered list. For example ( <ul></ul> )
ListItem22 The element is a list item. For example ( <li></li> )
Span23 The element is a space. For example ( <span></span> )
Video24 The element is a video. For example ( <video></video> )
Audio25 The element is audio media. For example ( <audio></audio> )
Source26 The element is a media source. For example ( <source /> )
Other27 Anything else.
See Also

Reference