Is it possible to dynamically get record fields in Silk4Test?
Let's say we have this record:
[-] type testRec is record
[ ] string a
[ ] int b
[ ] string c
[ ] string d
And this list:
list of string lsFields = {"a", "d"}
Is there a way to set only fields that are in lsFields to a specific value? Let's say I need to set them to "TEST", how would I do that? Is it even possible?