hello everyone! I am brand new to API mocking and ...
# general
a
hello everyone! I am brand new to API mocking and am curious if I can use WM to perform iterative calls and record the entire transaction? I have a large number of records to fetch and the server limits each GET call so I perform repeated calls supplying an increasing offset value. I'd like to record the entire process so a) I can later test against that entire flow in my CI pipeline and b) have ability to test optimization against the full process (it takes about 15mins in prod)
o
Yes. You can record request sequences and then reproduce their responses using stateful behavior https://wiremock.org/docs/stateful-behaviour/
👍 1