mcdcorp / opentest

Open source test automation tool for web applications, mobile apps and APIs
https://getopentest.org
MIT License
446 stars 107 forks source link

Dinamic description does not work #644

Closed ewmartinez closed 2 months ago

ewmartinez commented 2 months ago

Hi, I am using #630 solution in the next script: $description: script 'Usuario logueado ' + $localData.logueado;

This is the result in the step output:

image

Can explain what I am doing wrong? Thanks

ewmartinez commented 2 months ago

Hi, I've resolved the problem using this: - script: | $log( "Logueado como: " + $localData.logueado ); args: $description: $format('Usuario logueado {0}', $localData.logueado);