Automated Flash testing

My company has begn investigating automated testing solutions
for our products. For the ASPX, XML, and HTML, parts of our
products, that's obviously not an issue. But most of our content is
presented as SWFs, and now we're rebuilding our entire framework in
Flash as well. We have not been able to find a method for
auto-testing the Flash we're producing, but we really need to find
one (for load testing as well).
Any insights?

did you ever find a solution, where in the same boat and ive
searched the web all week and keep coming up empty.
Can anyway give any pointers into how we can test, i know
products like asunit will help with the code, but is there anything
useful that will help us do user testing, as currently our testers
need to click through every option in the flash application, which
takes hours.
Ive also been thinking of changing it all over to flex, as
this seems to have a little bit more on the testing side any
thoughts?
David

Similar Messages

  • Installing Flash 11 appears successful but doesn't reveal movie on Adobe flash test page

    repeated attempts to install flash 11 (successfully) have not eliminated the error when I use the Adobe Flash Test screen/movie.

    Pat,
    I'VE READ THE LATEST ATTACHMENTS TO THE EMAIL BELOW.  They require screen shots of error messages WHICH I'VE ALREADY PROVIDED.
    My reaction to the latest email is that no one took the time to actually understand what I've already communicated.
    But, here another copy of the error for your reference.
    I also get this error (red and yellow areas) when launching You Tube:
    Sooooooooooo...  To summarize...
    I've performed the clean install including using Adobe's special uninstall utility and carefully hunting down and erasing all of the litter Flash Player leaves behind even after it's uninstalled.
    The error messages shown above are the headaches I still have.
    If all else fails, we can go low-tech and CALL ME.
    Thank you,
    Mike Ogle
    801 310 6453

  • Automated Regression Testing

    Apologies for putting a more advanced question in a general forum but there is no Topic for QA/Testing (that I know of).
    Okay, I've been tasked with finding a solution for fully automated unit, component, system, and regression testing. I realize that sounds like a tall order and can't truly be done. However, I'd like to get as close as possible to being able to test every aspect of our system and thought I'd post to the community for ideas. We have a typical multi-tiered web app. We have a web interface, business logic on the server-side, Web Services, DAO, etc. Naturally, some combination of testing needs to be performed. So I suppose that first I need to make a list of all the (general) types of testing that can be done. So far I have:
    - syntax validation
    - link checking
    - unit testing
    - record and playback (robot user for web UI)
    - custom scripting (for anything I can't buy a tool for)
    - performance monitoring & stress testing
    - security testing
    - etc.
    So I guess my first question is: What other types of testing am I missing here? I honestly think I'll end up with 2-3 sets of tests that hopefully give me good testing coverage. The end goal is to have a nightly build that includes a series of tests which generate reports. So in the morning someone can open the reports and see if anything's really busted. So basically, after the build finishes, the tests should be kicked off. I'd like to use Ant for this but I suppose a cron job could be written or whatever. I'm not worried about that right now.
    Anyway, I don't have very specific requirements yet but I'm thinking of breaking my work up into unit, component, and system level testing. My initial thoughts are that I'd need:
    1. Unit Testing - Ant would simply kick off all the JUnit tests we have available. This would do basic class level testing and validation.
    2. Component Testing - Custom Java code/scripts that would tests some specific functional area. This is open ended in my mind as I'm not that familir with the codebase yet. But an example would be "register a user" or "make a reservation".
    3. System Testing - Needs to simuilate a user hitting the web interface and would invoke all tiers. So I'm guessing I need to buy some software product to fill out forms automatically and whatever else.
    Can you all let me know if there's anything major I'm missing? What methodologies or tools do you recommend? Any links on good tech articles regarding this? Anything comments or feedback welcome.
    Thanks in advance!

    I'd recommend adding automated acceptance testing to the list of things to consider. Example:
    http://fitnesse.org/
    ~

  • I have 4 flash test files.  Firefox does fine butv IE9 only displays two of them

    I have 4 flash test files.  Firefox does fine but IE9 only displays two of them. These display vertically and are just Flash moves of rolling text.  Firefox diplays them fine but IE9 only shows two to them: 1 and 4a.
    flash_words-1.swf
    flash_words-2a.swf
    flash_words-3a.swf
    flash_words-4a.swf
    Can anyone tell me how to fix it so that IE9 displays all four  of them?
    The URL is http://www.manhattes.com/home.html

    On 1 and 4a you are using the gobbledegook of
    AC_FL_RunContent
    for Flash detection.
    while 2 and 3 do not.
    AC_FL_RunContent is a pretty old embed method so either apply that method to 2 and 3 or switch all 4 to swfobject:
    http://code.google.com/p/swfobject/
    or simply embed using a single <object> and no IE conditional statements (<!--[if !IE]>-->):
    <object data="path_to_file/file.swf" type="application/x-shockwave-flash" width="insert_width_of_movie" height="insert_height_of_movie">
      <param name="movie" value="path_to_file/file.swf">
      <param name="SomeOtherParam" value="ParamValue">
    </object>
    Best wishes,
    Adninjastrator

  • Automated Unit Tests / TEST-INF/testrun.xml

    Hello!
    Regarding to the originial question here Re: Automated Unit Tests through NWDI / Purpose of testrun.xml I'll try to ask this question again:
    Is it possible to run jUnit-Tests automatically during the build (cbs)?
    A very promising looking file (testrun.xml) is not documented..
    We're using the NWDI and CE 7.11.
    Testdriven development isn't a new paradigm in the standard java development so it must be possible to do so with ce and nwdi.
    Thanks in advance,
    --cl

    Hi Carsten
    I guess that the testrun.xml allows to do exactly that you want - to run jUnit-Tests automatically during the build (CBS).
    Though there is one small thing - I think that the tool which can understand the file and run the tests is SAP internal tool. So I doubt that having just pure CBS server it'll be possible to activate the automatic test execution process. It seems we need to have something more.
    I also could not find any documentation regarding this on SDN. That's why I think the functionality is SAP internal.
    BR, Siarhei

  • Automated GUI testing

    Hey,
    I'm developing an application using UI5 and I'm currently looking for a tool that allows me to record automated GUI test cases.
    Usually we are using HP QuickTest for that purpose but it seems not to support UI5.
    Can you recommend me any Software that actually does support UI5 and can create automated GUI tests?
    Thanks!
    Regards, Timo

    Hi Timo,
    this is not my main expertise, but UI5 development internally also uses QTP. Maybe with additional plug-ins.
    But we are moving towards Selenium for UI tests.
    qUnit mentioned above is a code-based unit-testing tool which comes from jQuery and is also heavily used. The official documentation and some of our example test pages *.qunit.html should make it easy to write your own tests. But it's not really recording UI interaction.
    Regards
    Andreas

  • Automated BPEL Testing

    Automated BPEL Testing
    (on 10.1.3.2)
    I have created a set of Unit tests for our BPEL processes which deploy with no problems. From within the BPEL console they work fine.
    When I try to automate the testing (ideally so we can implement continuous integration) by running the test target of JDevelopers autogenerated build scripts (the same script I use to compile and deploy the process and to deploy the test).
    I have come across two problems:
    Firstly if I try to run the tests from a domain other than default (a neccessity in my environment) I get a message along the lines of:
    ORABPEL-02178
    Process not found.
    The BPEL process "XXXXXXXX", revision "1.0" has not been loaded. Either the process was not initialized properly or the process has been disabled.
    Please consult your administrator regarding this error. The application server logs may provide more information regarding this error.
    If I deploy and run from the default domain the ant target is successful but the generated report indicates that 0 tests were run (there are 3 tests actually deployed).
    Information on the web and forums seems very sparse but possibly it has something to do with the values of bpeltest.callhandler? What other properties effect the unit test?
    Regards,
    John

    I know this problems too and there a two bugs in metalink but not fixed yet.
    1) ant task bpeltest seems to work only on default domain (see BUG 5936230)
    2) no test-results under windows (on my unix box it works fine for me) (see BUG 5872799)
    Regards, Harald

  • Automated regression tests on Oracle*Forms

    Hi all,
    We're looking for a toolset that allows automated regression tests (record/playback) on an Oracle Forms GUI. Something like QuickTest*Pro (previously Winrunner).
    Anybody having experience with this ? Thanks for sharing it.

    Check tool called DataLoader
    http://www.dbload.com/

  • Unusual results of the Shockwave/Flash test page with IE-8

    Windows XP computer. Has IE-8, Google Chrome and Opera 10. On both Chrome and Opera the Shockwave and Flash test site displays properly. However in IE-8 the Shockwave portion flickers and causes IE to seemingly lock up. Only a TaskMgr abort of the IE instance will clear it. Also any attempt to set or modify the Shockwave player settings freezes, but works fine in Opera and Chrome.
    I've done lots of diagnostics and everything seems to be loaded correctly. IE still displays both Shockwave & Flash content correctly. It just seems to have a issue with the test site and other Adobe URLs. The code is properly registered, and IE has appropriate Add-on rights for the two Adobe products. 
    The Adobe home site displays with the movie Avatar content using Chrome/Opera but not using IE-8.
    I've spent the better part of today trying to resolve this and needless to say am not happy that these recent updates don't work as expected. Doesn't any software vendor these days actually test their releases before posting to the public ?

    Resolved: Something in the user profile was responsible. I re-built the profile and restored FAST settings and Flash/Shockwave & the test site now are all working properly

  • Webinar (Aug 11): How to create Cross-Platform Automated GUI Tests for Java Apps

    Join Squish expert, Amanda Burma, and learn how to create cross-platform automated GUI tests for your Java applications!
    Register here (multiple time slots)
    August 11th 2014
    Duration: 30 minutes plus Q & A
    This webinar will cover:
    General Squish for Java overview
    Automating BDD Scenarios
    Executing Cross-Platform Automated GUI Tests
    Interacting with Java application objects, properties & API
    See you there!
    Unable to attend? Register and we'll send links to future events and access to our webinar archive following the event.
    Webinar schedule
    Learn more about Squish
    Evaluate froglogic squish

    <property name="messaging.client.jar.path" value="Location in your local drive" />
    <property name="messaging.client.jar.name" value="nameOfYourFile.jar" />

  • CS4 Flash Test Movie won't work!

    I have been working on my final project for class all week. Suddenly tonight once I have finally worked through so many bugs in transfering things into the thing, I can't get the "Test Movie" option to work to view anything. I even tried to view just the scene. It keeps making these flashes and then basically stays where it's at. Anyone have any ideas? I'm frustrated and lost!
    Thanks.

    No error messages are coming up anywhere! That is why I don't understand why nothing is working.

  • Browser Works with Flash test movie btns but not in Dreamweaver

    What changes need to be made?
    The Broswer brings up this SE when testing flash btns in DW?
    SecurityError: Error #2028: Local-with-filesystem SWF file file:///C:/inetpub/wwwroot/Pizzapal.co.uk/topFramebtns1.swf cannot access Internet URL http://mark-pc/Pizzapal.co.uk/index.html.
    at global/flash.net::navigateToURL()
    at topFramebtns1_fla::MainTimeline/btn1Click()
    Thank you for reading
    Sabby76

    Give my self a star, the flash player manager needed to be asigned to acept the absolute path to my little virtual website.
    Problem solved, the underlying one is ongoing...
    Sabby76 `

  • "Automating" Unit Test Deployment

    We're trying to develop an automated build process using SQL Developer's Unit Test. This works by developing the unit test(s) on database A and then deploying the unit test(s) to database B for the build. Unfortunately, there is an issue when we come to import a new version (v2) of an existing test (v1). If a previous version of the test already exists on database B then the old version is sometimes merged with the new version.
    A simple example would be where:
    (v1) Version 01 has a Startup Process but no Teardown Process
    (v2) Version 02 has a Teardown Process but no Startup Process
    If I import Version 01 then Version 02 I get a test with both a Startup Process and a Teardown Process
    Now, we've managed to manually work around this by using the command - Purge Repository Objects; but this is not ideal as the process is meant to be fully automated.
    Any Ideas...

    Phillip / Brian
    Is it possible to "Purge Repository Objects" through a SQL script instead ?
    From what I can infer from looking at the UT tables the "Purge" truncates all the UT tables except UT_LOOKUP_CATEGORIES and UT_METADATA. Now, I've tried this but it doesn't quite seem to work. I'm missing something here.
    I get the following error message when I try to import files after my manual "purge":
    ORA-01400: cannot insert NULL into ("DCI_UT_REPO"."UT_TEST"."CREATED_ON")
    01400.00000 - "cannot insert NULL into (%s)"
    Regards
    Subboss

  • Flash 'test movie' animation won't play until refresh screen.

    Suddenly, the flash animation won't play until I refresh the screen, in test movie. What's gone wrong? Has worked as it should until last night. Now, when I create a new flash file, the animation doesn't play until I refresh the screen. Then it works fine. It also plays the other swfs fine.

    Thanks for the fast response. I appreciate it, Meishak.
    I remember saving everything. I have the file. I go to File
    >> Open >> I select the file I want>> Target file
    DOES OPEN... but only in preview. I popup opens up and plays the
    movie. But I cannot, to the best of my understanding (student
    newbie advert. major) open it to where I can edit timeline and
    stage and whatnot. I used to be able to. It is saved. It does open.
    But just not to be altered... is the best way I could describe it.
    I am assuming that maybe there is some type of "open as..." setting
    somewhere and it just have it on "always open as preview."
    I don't know... I have googled every troubleshot wordphase
    under the sun and nothing. Any thoughts?
    Thanks,
    -KD

  • Automated Unit Tests through NWDI / Purpose of testrun.xml

    Hello,
    I could not find any documentation on the test infrastructure / system that seems to be integrated into Netweaver CE 7.1. A DC offers the option via the context menu to "Add/Repair Unit Test Support". When this is used the Developer Studio automatically creates the necessary test source folder, JUnit library dependencies and a file called TEST-INF/testrun.xml.
    The first two things are clear, but what function does the testrun.xml file serve? To me it looks like it defines the Tests that should be executed (automaticaly during build?). However, the tests are never actually run.
    <?xml version="1.0" encoding="UTF-8"?>
    <test>
      <run type="junit">
        <include>com.sap.**</include>
        <exclude></exclude>
      </run>
    </test>
    Can anybody expain how this file is though to be used? Or how to perform automatic unit tests during/after the build process?
    Thanks in advance.
    ciao,
    Elmar
    Edited by: Elmar Weber on Sep 17, 2008 9:58 AM

    Hi test developers,
    the integration of JUnit tests into the DC build is planned for 7.30. You can add your tests in a separate test folder and specify additional "test"-dependencies, if required. The tests will be executed during the DC build. If a test fails, the build will also fail. Generation of code coverage reports will be possible, too.
    Best Regards,
      Jochen Ehret.

Maybe you are looking for

  • Saving PDF form on Mac prevents viewing and printing by another viewer

    We run a student competition which is affiliated with a national competition.  The national competition provides a set of forms that must be filled out by the students, teachers, etc.  We have a process set up whereby students can download a PDF form

  • A question for the digital downloads.

    So I have a digital download I am trying to use. After multiple attempts on two computers, it still does not work. It says the code is invalid even thought I am 100% sure that it is. Is there any help that can be given?

  • Back-up doesn't progress. I have a large catalog...should I keep waiting or is something wrong?

    I am trying to do an incremental back-up. The Organizer has been calculating total media size for over 14 hours and is still at the initial 3%.  I have a large catalog.Should I keep waiting or is something wrong?

  • What to use in this case?

    I'm in CS3 I have an .swf of a skyline in the attached. The design calls for text to tween up from behind the buildings on the skyline. I was able to do this with a straight mask but you can see the text coming out from the tip of the mask. I wanted

  • HT1386 iphone storage/itunes

    Hi. last week I sycronized my Iphone with the itunes, and instead of dowloading the photos to my computer it uploaded everything from the computer to the iphone. now my iphone's sotrage is full and i dont know how to reverse this action, thanks sharo