Uses of Class
com.facilita.fc.web.Form
-
Packages that use Form 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 Form in com.facilita.fc.web
Methods in com.facilita.fc.web that return Form Modifier and Type Method Description FormResponse. extractForm(int formIndex)Extracts the nth HTMLFormfrom the response content.FormResponse. extractForm(int formIndex, ActionType failAction)Extracts the nth HTMLFormfrom the response content, and takes the specifiedfailActionif no matching form can be found.FormResponse. extractForm(java.lang.String formName)Extracts an HTMLFormwith the specifiedformNamefrom the response content.FormResponse. extractForm(java.lang.String formName, ActionType failAction)Extracts an HTMLFormwith the specifiedformNamefrom the response content, and takes the specifiedfailActionif no matching form can be found.Methods in com.facilita.fc.web that return types with arguments of type Form Modifier and Type Method Description java.util.List<Form>Response. extractForms()Extracts all the HTMLFormobjects from the response content.Methods in com.facilita.fc.web with parameters of type Form Modifier and Type Method Description static longForm. getCPtr(Form obj)For internal use only.voidRequest. setMessageBody(Form form)Sets the body of the HTTP request that will be sent to the server, as name/value pairs extracted from the specifiedFormobject.UrlUrl. withQuery(Form form)Creates a newUrlobject using the attributes of thisUrl, but with query data from the specifiedFormobject (replacing the existing query data if present).UrlUrl. withQuery(Form form, java.lang.String unsafeCharacters)Creates a newUrlobject using the attributes of thisUrl, but with query data from the specifiedFormobject percent-encoded using the supplied list ofunsafeCharacters(replacing the existing query data if present).Constructors in com.facilita.fc.web with parameters of type Form Constructor Description Form(Form other)Creates a newFormobject which is an exact copy of the specifiedForm.
-