Am new to JMeter. I have extracted my required values from response data using regular expression extractor. Now I need to use these etracted values to select a particular data from the list.
I have few data listed. In these data, few have edit enabled and few data's edit are disabled. I have to instruct JMeter to select data that have edit enabled. there are 3 conditions to have edit enabled which is:
is_final = 1
is_locked = 0
status_id = 1
I have extracted these values from response data. But I donot know how to use BeanShell to instruct JMeter to select data that have edit enabled. Please help me on this.