Customizing with Lifecycle Hooks
Last updated
Was this helpful?
Last updated
Was this helpful?
Write a Python script (e.g. lifecycle_hooks.py)
In this script, define the lifecycle events to hook into
Define what kind of behavior to execute for each of those events
Below is a sample script that prints some strings during two lifecycle events.
Manipulating the context object will affect the behaviour of the request interception.
handle_before_request
is for before a request gets sent
handle_before_record
is for before a request gets recorded
After a request gets intercepted, the string "Before request!"
will be printed. After the response returns, but before the request gets recorded, "Before record!"
will be printed.
Pass the path to the lifecycle hooks scripts using the --lifecycle-hooks-path
option: