Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Quicktest professional 11 trial version. I have a flex application for testing. When I try to record action performed on the flex application. QTP stores it as MacroMediaFlashPlayerActiveX rather than the origin button or link. I am using flex 3.5.0 and internet explorer 7. How can I do this??

share|improve this question
Have you included automation libs in your application? – Florian F Apr 5 '11 at 7:39
oh, I remember about your previous questions on Flex automation. Why did you choose QTP at the end? – Florian F Apr 5 '11 at 7:40
1  
Yes I added the automation library path in the compiler arguments. I did not choose anyone yet. I am still in the process of testing that which one is better. I shifted to QTP from flexMonkey because it was not recording some of the action which I need. so QTP is doing the job but it treated the whole page as one MacromediaflasplayerActiveX object. – Sarfraz Ahmed Apr 5 '11 at 9:29
I am adding these libraries in the compiler arguments. -include-libraries "C:\Program Files\Adobe\Flex Builder 3\sdks\3.5.0\frameworks\libs\automation.swc" – Sarfraz Ahmed Apr 5 '11 at 9:31
@Sarfraz Ahmed: I also tried out FlexMonkey, but it was always confusing components that were created dynamically e.g. if I clicked 'Add Control' on my UI, and a new display object was put on screen, FlexMonkey automation would refer to the first object. Might try out QuickTest – Brian Bishop Apr 5 '11 at 10:26
show 6 more comments

1 Answer

I finally figured out the solution. It will be great to share with you.

Testing Using QTP:

-->Install QTP_plugin for flex. This can be found in install directory of flex.

-->Include the following libraries in the compiler arguments.

-include-libraries "C:\Program Files\Adobe\Flex Builder 3\sdks\3.5.0\frameworks\libs\automation.swc" "C:\Program Files\Adobe\Flex Builder 3\sdks\3.5.0\frameworks\libs\automation_agent.swc" "C:\Program Files\Adobe\Flex Builder 3\sdks\3.5.0\frameworks\libs\qtp.swc" "C:\Program Files\Adobe\Flex Builder 3\sdks\3.5.0\frameworks\libs\automation_dmv.swc"

and you are good to go. Remember those components which has ChildMouse property set to false will be shown in the testing as MacroMediaFlashPlayerActiveX object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.