I\'m testing a web service that returns JSON responses and I\'d like to pull multiple values from the response. A typical response would contain multiple values in a list. F
You can just add (?s) to the regex to avoid line breaks.
(?s)
E.g: (?s)"name":"(.+?)","description":"(.+?)"
(?s)"name":"(.+?)","description":"(.+?)"
It works for me on assertions.