I am using Gatling and want to use feeders. Apparently, feeders require a List[Map[String, String]]. I have a list of tuples like
{("key", "abcde"),("key", "bcdef")...}
and I want to convert it into
{ Map("key", "abcde"), Map("key", "bcdef")...}
How can I do that? I am new to Scala programming and would appreciate any help here.