Uses of Class
com.facilita.fc.web.HtmlElement
-
Packages that use HtmlElement Package Description com.facilita.fc.web The eggPlant Performance Web Java API makes it easy to perform load tests against web sites and services, by providing classes and methods that simulate the behaviour of a web browser sending/receiving HTTP(s) requests to/from a web server. -
-
Uses of HtmlElement in com.facilita.fc.web
Subclasses of HtmlElement in com.facilita.fc.web Modifier and Type Class Description class
FileElement
Represents anInputElement
which is a file select control.class
Form
Represents an HTML form.class
ImageButtonElement
Represents anInputElement
which is an image.class
InputElement
Represents an HTML input element within an HTML form.class
OptionElement
Represents an HTML option element within an HTML form.class
SelectElement
Represents an HTML select element within an HTML form.class
TextAreaElement
Represents an HTML textarea element within an HTML form.Methods in com.facilita.fc.web that return HtmlElement Modifier and Type Method Description HtmlElement
FileElement. clone()
HtmlElement
HtmlElement. clone()
Creates a copy of this HTML element.HtmlElement
ImageButtonElement. clone()
HtmlElement
InputElement. clone()
HtmlElement
OptionElement. clone()
HtmlElement
SelectElement. clone()
HtmlElement
TextAreaElement. clone()
HtmlElement
Form. getHtmlElement(int index)
Gets the nthHtmlElement
object in this form.HtmlElement
Form. getHtmlElement(java.lang.String name)
Gets theHtmlElement
with the specifiedname
.HtmlElement
Form. getHtmlElement(java.lang.String name, java.lang.String value)
Methods in com.facilita.fc.web with parameters of type HtmlElement Modifier and Type Method Description void
Form. addElement(HtmlElement element)
Appends the specifiedHtmlElement
to the end of thisForm
.static long
HtmlElement. getCPtr(HtmlElement obj)
For internal use only.void
Form. insertElement(int index, HtmlElement element)
Inserts the specifiedHtmlElement
into the form.static InputElement
InputElement. makeFrom(HtmlElement htmlElement)
For internal use only.static SelectElement
SelectElement. makeFrom(HtmlElement htmlElement)
For internal use only.static TextAreaElement
TextAreaElement. makeFrom(HtmlElement htmlElement)
For internal use only.
-