Keywords¶
This page is a concise map of the most commonly used keywords.
Session¶
Parallel Create SessionParallel Shutdown
Queue and execution¶
Parallel Queue RequestParallel Queue ManyParallel Wait For All RequestsParallel Wait For All And Get Responses
Convenience HTTP methods¶
Parallel GETParallel POSTParallel PUTParallel DELETEParallel PATCHParallel HEADParallel OPTIONS
Responses¶
Parallel Get Response ObjectParallel Get Response StatusParallel Get Response BodyParallel Get Response JSON
Performance and resilience¶
Parallel Set Worker CountParallel Set Rate Limit— throttles at HTTP send time; default burst isrequests + 1Parallel Clear Rate LimitParallel Set Retry Policy— status + transport errors; backoff with jitterParallel Clear Retry PolicyParallel Get MetricsParallel Clear Metrics
Behavioral notes¶
- Omitting
session=uses thedefaultsession when one exists. - Custom request
idvalues must be unique; duplicates raiseValueError. Parallel Wait For All And Get Responsesreturns only the batch queued since the previous wait.- Wait timeouts warn by default; pass
fail_on_timeout=${True}(or library init) to raiseTimeoutError. - Shutdown runs automatically at end of each test via the library listener.
For full keyword docs generated from the library, use Robot Libdoc locally:
python -m robot.libdoc robot_parallel_requests.ParallelRequests libdoc.html