Menu

Retrieve CSV data from JameleonTestResult

Help
2007-08-22
2013-04-25
  • Jose Ribeiro (JR)

    I have a TestCaseListener class for jameleon. I have all the results in a declaration like:
    //TestCaseTag tct
    TestCaseResult tcr = tct.getResults();
    List childResults = tcr.getAllChildrenResults();
    Iterator it = childResults.iterator();
    JameleonTestResult tr;
    while (it.hasNext()) {
    tr = (JameleonTestResult)it.next();

    I can see each step of my scripts, but I'm using CSV, so I need to know witch data was submitted to that test, to fail.

    I'm testing a login page with different users and passwords, and want to know what user failed.

    Any suggestion?

     
    • Christian Hargraves

      Which version of Jameleon are you using? The newest version in SVN should give you access to data row information you are looking for.

       
      • Christian Hargraves

        Okay

        We just added a couple of new result objects in the current SVN repository. Until we release, the only to get these changes is by checking the latest code out and building it.

         
    • Jose Ribeiro (JR)

      I'using 3.3-M4, the test-suite release.

       

Log in to post a comment.