Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
I was just wondering if there is a way of generating a smart jmx* (
blazemeter recorder provides this
) from a
.har
or
.saz
(
fiddler archive
).
Please do not provide alternate solutions.
I just want to know if blazemeter or any other services provide a way to generate auto-correlated script from
.har
or
.saz
files.
*smart jmx is an auto correlated jmeter script provided by blazemeter proxy recorder.
Read more here
.
Looking into
How to Cut Your JMeter Scripting Time by 80%
there are no standalone solutions, you will need to
replay
your
.har
or
.saz
file via the BlazeMeter Proxy Recorder in order to get it auto-correlated.
With regards to Fiddler, it should be able to
replay the requests
out of the box:
For standalone .har files it might be more tricky as you will have to install i.e.
har-replay
utility and configure it to use your file.
In both cases requests
must be replayed via the proxy
.
–
–
I had forgotten about this question. I ended up writing a tool which parses
.saz
file and spits out a jmeter script (
.jmx
file). You can
find it here, its called saz2jmx
. Although its not exactly what I wanted (doesn't have the auto correlation feature) but it has the potential to be made one! People interested to contribute are welcome! I will write about it soon.
cheers.
–
Thanks for contributing an answer to Stack Overflow!
-
Please be sure to
answer the question
. Provide details and share your research!
But
avoid
…
-
Asking for help, clarification, or responding to other answers.
-
Making statements based on opinion; back them up with references or personal experience.
To learn more, see our
tips on writing great answers
.