I have results page with many rows. and I want to extract values from the 7th column in each row. I used the JSONPath expression from Variable Extractor to get this "$.MatchingWorklist.Rows[0].Values[6]". Can I use arrays here?
First you need to replace "0" by "*", so your expression will be "$.MatchingWorklist.Rows[*].Values[6]".
Then, you have to select radio button "Extract all occurrences" to get an array.