Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.meterware.httpunit.WebForm

Uses of WebForm in com.meterware.httpunit
 

Fields in com.meterware.httpunit declared as WebForm
private  WebForm[] ParsedHTML._forms
           
private  WebForm ParsedHTML._activeForm
           
private  WebForm FormControl._form
           
 

Methods in com.meterware.httpunit that return WebForm
 WebForm[] WebResponse.getForms()
          Returns the forms found in the page in the order in which they appear.
 WebForm WebResponse.getFormWithName(java.lang.String name)
          Returns the form found in the page with the specified name.
 WebForm WebResponse.getFormWithID(java.lang.String ID)
          Returns the form found in the page with the specified ID.
 WebForm WebResponse.getFirstMatchingForm(HTMLElementPredicate predicate, java.lang.Object criteria)
          Returns the first form found in the page matching the specified criteria.
 WebForm[] WebResponse.getMatchingForms(HTMLElementPredicate predicate, java.lang.Object criteria)
          Returns all forms found in the page matching the specified criteria.
 WebForm[] ParsedHTML.getForms()
          Returns the forms found in the page in the order in which they appear.
 WebForm ParsedHTML.getFormWithID(java.lang.String id)
          Returns the form found in the page with the specified ID.
 WebForm ParsedHTML.getFirstMatchingForm(HTMLElementPredicate predicate, java.lang.Object criteria)
          Returns the first link found in the page matching the specified criteria.
 WebForm[] ParsedHTML.getMatchingForms(HTMLElementPredicate predicate, java.lang.Object criteria)
          Returns all links found in the page matching the specified criteria.
 WebForm ParsedHTML.getFormWithName(java.lang.String name)
          Returns the form found in the page with the specified name.
private  WebForm ParsedHTML.toWebForm(org.w3c.dom.Element element)
           
private  WebForm ParsedHTML.FormControlFactory.getForm(NodeUtils.PreOrderTraversal pot)
           
 WebForm[] HTMLSegment.getForms()
          Returns the forms found in this HTML segment in the order in which they appear.
 WebForm HTMLSegment.getFormWithID(java.lang.String ID)
          Returns the form found in this HTML segment with the specified ID.
 WebForm HTMLSegment.getFormWithName(java.lang.String name)
          Returns the form found in this HTML segment with the specified name.
 WebForm HTMLSegment.getFirstMatchingForm(HTMLElementPredicate predicate, java.lang.Object value)
          Returns the first form found in the page matching the specified criteria.
 WebForm[] HTMLSegment.getMatchingForms(HTMLElementPredicate predicate, java.lang.Object criteria)
          Returns all forms found in the page matching the specified criteria.
protected  WebForm FormControl.getForm()
           
 

Methods in com.meterware.httpunit with parameters of type WebForm
(package private) static SubmitButton SubmitButton.createFakeSubmitButton(WebForm form)
           
private  RadioGroupFormControl FormParameter.getRadioGroup(WebForm form)
           
private static org.w3c.dom.Node FormControl.newEmptyNode(WebForm form)
           
(package private) static FormControl FormControl.newFormParameter(WebForm form, org.w3c.dom.Node node)
           
 

Constructors in com.meterware.httpunit with parameters of type WebForm
PresetFormParameter(WebForm form, java.lang.String name, java.lang.String value)
           
SelectionFormControl(WebForm form, org.w3c.dom.Node node)
           
FileSubmitFormControl(WebForm form, org.w3c.dom.Node node)
           
TextAreaFormControl(WebForm form, org.w3c.dom.Node node)
           
HiddenFieldFormControl(WebForm form, org.w3c.dom.Node node)
           
PasswordFieldFormControl(WebForm form, org.w3c.dom.Node node)
           
TextFieldFormControl(WebForm form, org.w3c.dom.Node node)
           
TextFormControl(WebForm form, org.w3c.dom.Node node, java.lang.String defaultValue)
           
CheckboxFormControl(WebForm form, org.w3c.dom.Node node)
           
RadioGroupFormControl(WebForm form)
           
RadioButtonFormControl(WebForm form, org.w3c.dom.Node node)
           
BooleanFormControl(WebForm form, org.w3c.dom.Node node)
           
WebRequest(WebForm sourceForm, ParameterHolder parameterHolder, SubmitButton button, int x, int y)
          Constructs a web request from a form.
SubmitButton(WebForm form, org.w3c.dom.Node node)
           
SubmitButton(WebForm form)
           
SubmitButton(WebForm form, boolean fake)
           
ResetButton(WebForm form, org.w3c.dom.Node node)
           
PostMethodWebRequest(WebForm sourceForm, SubmitButton button, int x, int y)
          Constructs a web request for a form submitted by clicking a button.
PostMethodWebRequest(WebForm sourceForm, ParameterHolder parameterHolder, SubmitButton button, int x, int y)
           
PostMethodWebRequest(WebForm sourceForm)
          Constructs a web request for a form submitted via a script.
MessageBodyWebRequest(WebForm sourceForm, SubmitButton button, int x, int y)
          Constructs a web request for a form submitted via a button.
MessageBodyWebRequest(WebForm sourceForm, ParameterHolder parameterHolder, SubmitButton button, int x, int y)
          Constructs a web request for a form submitted via a button.
MessageBodyWebRequest(WebForm sourceForm)
          Constructs a web request for a form submitted via script.
HeaderOnlyWebRequest(WebForm sourceForm, ParameterHolder parameterHolder, SubmitButton button, int x, int y)
           
GetMethodWebRequest(WebForm sourceForm)
          Constructs a web request for a form submitted from JavaScript.
GetMethodWebRequest(WebForm sourceForm, ParameterHolder parameterHolder, SubmitButton button, int x, int y)
          Constructs a web request for a form.
FormControl(WebForm form)
           
FormControl(WebForm form, org.w3c.dom.Node node)
           
Button(WebForm form)
           
Button(WebForm form, org.w3c.dom.Node node)