You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: advanced_guide.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ For how to write custom Python extensions, see the [extensions guide](extensions
21
21
+ Generators **must be declared by name** in the TestSet config for them to be used
22
22
+ Generator bindings evaluate once per HTTP call:
23
23
-**Only once per Test**, and **multiple times for a Benchmark**
24
-
+ Generator bindings only apply to the Test/Benchmark they are declared in. New values are generated only when the binding is evaluated.
24
+
+ Generator bindings are re-evaluated (and a new value generated) every time they are declared in a Test/Benchmark. Once the value has been generated, it can be used in all subsequent tests (unless that variable is bound to something else).
25
25
3.**Data may be extracted from the HTTP response body** with the 'extract_binds' element in a test.
26
26
+ Note that if the request fails, the data cannot be set (nothing to work with)
27
27
+ Currently, this is unsupported for benchmarks: using extraction doesn't make sense because benchmarks should be isolated.
0 commit comments