Feature: lower case helper method Scenario: json * def json = { FOO: 'BAR', Hello: 'World' } * def json = karate.lowerCase(json) * match json == { foo: 'bar', hello: 'world' } Scenario: xml * def xml = baZ * xml xml = karate.lowerCase(xml) * match xml == baz