I'm attempting to test a Flex application in which Objects do not have static IDs. I'd like to use FunFX for automation, since it can easily be kicked off from a Linux shell.
This said, FunFX doesn't appear to contain functions which allow users to access children via their parent objects (e.g. parent.get_child_at(<index>)
or parent.children()
for iteration). I see methods which return the number of children beneath a parent, but I don't see any iteration functionality which would allow me to parse the hierarchical structure.
Has anyone used FunFX to test a black-box Flex app where object IDs are not known? If so, how did you accomplish accessing the various objects & components to drive their functionality?