14 years ago
Use Table Checkpoints to Verify ComboBox Contents
If you've ever tested an app with a combobox, you've probably verified that it contains the correct items. For a Windows Client app, you'd use a Property Checkpoint for that sort of validation. However, when testing a Flex app, a Property Checkpoint won't work in this scenario. Instead, use a Table Checkpoint to verify the contents of the combo box or list box. This works because comboboxes are structured the same as flex tables under the hood. The checkpoint will store all the values of the combobox as a baseline for future comparison, and will notify you if any of the values don't match at runtime.
Hope this helps!
Hope this helps!