tags:

views:

134

answers:

0

Jameleon is an automated testing framework (built on top of Jelly). I have been using Jameleon at one project to write automated tests in xml format. It works fine for simple tests but I am starting to feel that it has some serious limitations.

There is a set of steps that are common to a lot of my test cases and I would like to create a test case (with the common tasks and validations) that would be called from within the other test cases.

I found that I could do the following to call a test case from within another test case:

<test-suite>
    <test-script script="common_tasks.xml"/>
</test-suite>

However, I need to pass some parameters/variables to this test case. Do you know how can I do that in Jameleon?