In HP ALM/QC, given :
- a Template Test
T1
with a parameterP1
- a Template Test
T2
with a parameterP2
Can I make T1
call T2
with the value of P1
inserted into P2
?
In T1
I tried to call T2
and pass "<<< P1 >>>" as the value for P2
, but it did not work : when I made a new test T3
calling T1
with an actual value for P1
, the parameter P2
ended up with the raw value "<<< P1 >>>" instead of the value of the parameter P1
.
Thank you!