Closed
Description
Related to #50
I would like to have convenience methods for converting a DataTable to Scala types:
Given("My expression") { (table: DataTable) =>
table.asScalaMaps
// Instead of something like:
table.asMaps().asScala.map(_.asScala)
}
Also considering that DataTable can contain null
values but null
is not expected in Scala, we should probably filter out the null
values.