I am looking for ideas to trigger the actions for fly-out menus using QTP.
I am testing a Web App using QTP. The application has \"cascaded\" or hierarchical fly-out
I had a similar situation handled in slightly different manner, first click on the parent link Options then trigger the fireevent onclick with the help of ordinal identifier
eg: browser().page().link(options).click
browser().page().link("name:=preferences","html tag:=A","index:=X").firevent "onclick"
This would ideally load the intended parent link & would be helpful in triggering fire event on click- Hope this helps.