How can I get current time in 24 hours format in JMeter.
I tried ${__time(hh:mm a,)} but it results in AM/PM format.
As per How to Use JMeter Functions guide JMeter's __time() function output can be controlled via SimpleDateFormat class patterns.
Looking into JavaDoc:
a letterH for 0-24 hours or lowercase k for 1-23 hoursSo change function to ${__time(HH:mm,)} and that should be it