Important Note on Memory Overwrites
Drizz Memory works as a single-source key–value store, which means:
Storing a value into the same variable name twice will overwrite the previous value.
The original value is permanently lost, and only the most recent value remains available.
Testers must be very particular and intentional when naming variables, especially in flows where multiple dynamic values (OTP, IDs, codes) appear sequentially.
Incorrect practice:
Store the OTP as otp_details → first value
Store the new OTP as otp_details → overwrites previous value (context lost)
Correct practice:
Store the OTP as otp_details_initial
Store the new OTP as otp_details_resend
Last updated
Was this helpful?