Fitnesse
I want to click on card choice fields, can someone tell me what script should I write?
The following is the card choice field that we are using
a!cardChoiceField(
label: "Activity Choices",
labelPosition: "COLLAPSED",
data: local!activities,
cardTemplate: a!cardTemplateTile(
id: fv!data.zlkActivityType,
primaryText: fv!data.zlkActivityType,
icon: choose(
fv!index,
"briefcase-medical",
"microphone",
"briefcase-medical",
"microphone",
"microphone",
"briefcase-medical",
"microphone"
),
showWhen: isnull(fv!data.zatParenttype)
),
value: local!selectedActivity,
saveInto: local!selectedActivity,
maxSelections: 1,
align: "CENTER",
showShadow: true
)
