Thanks Mauro,
can I fill balance data (header2 and header3)from java in Given "a table" and "another table"? i.e.
Given a members
memberID |
header2 |
header3
11223 |
|
|
and claims
claimsID | typesofClaims| ClaimsNumbers| |
C1001| | | |
my steps are as follows:
@Given("$members with $claims")
public void AddValues(ExamplesTable members, ExamplesTable claims)
{
//TODO loop through members to:
// 1. Insert header2 from partyType(Table)...note:Few fields only
// 2. Insert header3 from contactType(Table)(Note: all fields)
//TODO loop through claims to:
// 1. Insert claimID from Claim(Table)
// 2. Insert typesofClaims from MedicalClaim(Table)
}
Yes it is possible with syntax that is a straightforward extension:
Please use the mailing lists (http://jbehave.org/mailing-lists.html) as first point of contact when asking questions.
Then raise issue once you've determined feature is not there.