Setting up an IMAP account for email testingThis is a feature in development. more⇛ by Group Public on Friday November 26 2010 @ 20:47:41 (1/1 Points) |
Configuration ↪Reference |
Below is a list of all reference documents. To help you find what you want there is also:
Setting up an IMAP account for email testingThis is a feature in development. more⇛ by Group Public on Friday November 26 2010 @ 20:47:41 (1/1 Points) |
Configuration ↪Reference |
escapeJSStringIn some cases while using evalJavaScript→ or otherwise producing JavaScript code, you'll need to escape a string. escapeJSString takes an input string and produces a valid JavaScript string literal (with quotes). more⇛ by Group Public on Tuesday September 14 2010 @ 11:59:52 (1/1 Points) |
API ↪Reference |
durationAs - Convert duration to seconds, minutes, etc.When recording a Metric→ or otherwise reporting a period of elapsed time, the Duration→ type may need to be converted. The durationAs function enables these conversions. more⇛ by Group Public on Wednesday July 21 2010 @ 10:54:33 (1/1 Points) |
API ↪Reference |
Type Conversion and Immediate EvaluationTestPlan generally uses lazy type conversion: when a variable needs to be a specific type it as converted at the time it is needed. This means that when you assign items in the context they tend to be a direct copy of whatever they are being assigned from. more⇛ by Group Public on Wednesday July 21 2010 @ 10:17:32 (1/1 Points) |
API ↪Reference |
createHTTPRequestcreateHTTPRequest allows creation of an arbitrary HTTP Request→ object. This is used in cases where simply specifying a URL or using one of the standard functions is not sufficient. This often arises when trying to use a REST API or to test very specific requests. more⇛ by Group Public on Wednesday June 09 2010 @ 09:10:25 (1/1 Points) |
API ↪Reference |
SaveRequestCan be used to store the content of a request→ into a file. This will execute the request and store the result into the file. more⇛ by Group Public on Wednesday June 02 2010 @ 16:04:18 (1/1 Points) |
API ↪Reference |
getClickRequestCreates the Request→ that would result from the Click→ function. In many cases this can only be an approximation of the request, not the exact same request that the browser would submit. more⇛ by Group Public on Wednesday June 02 2010 @ 16:03:10 (1/1 Points) |
API ↪Reference |
RequestA Request is an object which specifies how something can be retrieved. Rather than dealing directly with URLs many functions work with these abstract request objects -- as does TestPlan internally. more⇛ by Group Public on Wednesday June 02 2010 @ 15:58:52 (1/1 Points) |
API ↪Reference |
endend denotes the end of a while→, foreach→, if→, with→ or withvector→ block. Each of those block openers must be matched with a corresponding end. more⇛ by Group Public on Sunday April 25 2010 @ 22:04:32 (1/1 Points) |
Language ↪Reference |
optionalThe optional keyword is used in map construction to allow a value not to exist. Normally if an RValue→ does not exist if will trigger an error. more⇛ by Group Public on Sunday April 25 2010 @ 22:02:47 (1/1 Points) |
Language ↪Reference |