FitNesse - Drop down field value selection fails with long lists

I'm experiencing issues with drop down field selection.  FitNesse is going through every field choice but it does not actually select the value. I have tried to use both an index value as well as the value name.

|populate field|KYC Type|with value|Hello World|

|populate field|KYC Type|with value|[12]|

Does anyone know of any alternatives or suggestions to get this to work reliably?

Thanks!

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer
    Hi Ric ,

    using the below script to populate values in a drop-down
    | populate field | FIELD_LABEL or [INDEX] or FIELD_LABEL[INDEX] | with value | VALUE |

    For populating all types of fields. When populating checkbox, radio, or select fields [INDICES] can be used. When populating picker fields the display value must be used.
    | populate field | FIELD_LABEL or [INDEX] or FIELD_LABEL[INDEX] | with | VALUE(S) |

    try this (|populate field|KYC Type|with |Hello World|)

    Thanks
Reply
  • 0
    Certified Senior Developer
    Hi Ric ,

    using the below script to populate values in a drop-down
    | populate field | FIELD_LABEL or [INDEX] or FIELD_LABEL[INDEX] | with value | VALUE |

    For populating all types of fields. When populating checkbox, radio, or select fields [INDICES] can be used. When populating picker fields the display value must be used.
    | populate field | FIELD_LABEL or [INDEX] or FIELD_LABEL[INDEX] | with | VALUE(S) |

    try this (|populate field|KYC Type|with |Hello World|)

    Thanks
Children