Data Driven Katalon Recorder

Hi everyone,

I’m currently trying to use data-driven function in Katalon Recorder, but instead of the value of the variable, i just got $(mail).

Here’s my CSV file :

id,mail,mdp1,mdp2
test90,test90@ucar.fr,123456,123456
test91,test90@ucar.fr,123456,123456
test92,test90@ucar.fr,123456,123456
test93,test90@ucar.fr,123456,123456
test94,test90@ucar.fr,123456,123456
test95,test90@ucar.fr,123456,123456
test96,test90@ucar.fr,123456,123456

And here’s my step :

loadVars | toto.csv |

open | google.com |

type | name=q | $(mail)

endLoadVars | |

Thanks a lot.

I personally don’t use loadVars/endLoadVars commands but storeCsv and it work fine for me so maybe try to use this to solve the issue.

You need to use curly braces ${variable} to dereference the variable.
In your case the line should be:

type | name=q | ${mail}