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?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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?
Which version of Jameleon are you using? The newest version in SVN should give you access to data row information you are looking for.
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.
I'using 3.3-M4, the test-suite release.