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 Form
Response. extractForm(int formIndex)
Extracts the nth HTMLForm
from the response content.Form
Response. extractForm(int formIndex, ActionType failAction)
Extracts the nth HTMLForm
from the response content, and takes the specifiedfailAction
if no matching form can be found.Form
Response. extractForm(java.lang.String formName)
Extracts an HTMLForm
with the specifiedformName
from the response content.Form
Response. extractForm(java.lang.String formName, ActionType failAction)
Extracts an HTMLForm
with the specifiedformName
from the response content, and takes the specifiedfailAction
if 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 HTMLForm
objects from the response content.Methods in com.facilita.fc.web with parameters of type Form Modifier and Type Method Description static long
Form. getCPtr(Form obj)
For internal use only.void
Request. setMessageBody(Form form)
Sets the body of the HTTP request that will be sent to the server, as name/value pairs extracted from the specifiedForm
object.Url
Url. withQuery(Form form)
Creates a newUrl
object using the attributes of thisUrl
, but with query data from the specifiedForm
object (replacing the existing query data if present).Url
Url. withQuery(Form form, java.lang.String unsafeCharacters)
Creates a newUrl
object using the attributes of thisUrl
, but with query data from the specifiedForm
object 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 newForm
object which is an exact copy of the specifiedForm
.
-