check(form) does not use the first option as default value if it is empty

In the below, check(form) uses the second option as default value. Chrome is using the first one (empty string).

--- Collectif Individuel

I’m using Gatling 3.4.1 with librairies jodd-core 5.1.5 and jod-lagarto 6.0.0.
Form data is traced as follows:

.check(form(“form[name=form]”).saveAs(“pageForm”)

for (x ← session(“pageForm”).as[Map[String, Any]]){
println("pageForm " + x);
}

Prints
pageForm (familleProduit,morale)

A bug indeed, thanks for reporting!
https://github.com/gatling/gatling/issues/4026