Uses of Class
com.zenkey.net.prowser.Request

Uses of Request in com.zenkey.net.prowser
 

Methods in com.zenkey.net.prowser that return Request
static Request Request.createRequest(File requestFile)
          Factory method that returns a new Request object whose property values are specified in a request file.
static Request Request.createRequest(String uri)
          Factory method that returns a new Request object for the specified URL-encoded URI string; all other request properties receive default values.
static Request Request.createRequest(String uri, boolean isEncoded)
          Factory method that returns a new Request object for the specified URI string, which is assumed to be URL-encoded if the isEncoded argument is true; all other request properties receive default values.
 Request Prowser.getHomePage()
          Returns the home page Request object for this Prowser instance.
 Request Tab.getRequest()
          Returns the most recently executed Request.
 Request Response.getRequest()
          Returns the Request object that generated this Response.
 

Methods in com.zenkey.net.prowser with parameters of type Request
 Response Tab.go(Request request)
          Executes the specified Request and returns a new Response object.
 void Prowser.setHomePage(Request homePage)
          Sets the home page Request object for this Prowser instance.
 

Constructors in com.zenkey.net.prowser with parameters of type Request
Prowser(Request homePage)
          Constructs a new Prowser object with a preset default configuration and the specified home page.
Prowser(Request homePage, String defaultHttpVersion, Integer defaultTimeout, String defaultUserAgent)
          Constructs a new Prowser object with the specified home page and the specified default configuration values.