You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this should be part of Cucumber Scala by default (if it's possible) or this has to be an optional feature that users can enable by inheriting a trait for instance. I guess it depends on how it's implemented 🤔
This was possible in with version 2.x and as far as I know, for now, it has to be implemented with custom transformers and/or type registry.
This was possible in with version 2.x and as far as I know, for now, it has to be implemented with custom transformers and/or type registry.
This was done by XStream library which was build into Cucumber. This was not a good long term solution and replaced with the setDefault*Transformer on the type registry. I would not recommend continuing with TypeRegistryConfigurer but rather implementing these like step definitions. For example cucumber-java uses annotations for this.
I believe the Cucumber Scala should provide an easy way to map Datatables to case classes.
I'm not sure if this should be part of Cucumber Scala by default (if it's possible) or this has to be an optional feature that users can enable by inheriting a
trait
for instance. I guess it depends on how it's implemented 🤔This was possible in with version 2.x and as far as I know, for now, it has to be implemented with custom transformers and/or type registry.
Example of implementation in Cucumber Scala 4.7:
The text was updated successfully, but these errors were encountered: