_OK after email address in the field

Hello,

something is driving me mad with UI.Vision.

When I user the command below to simply fill up one field with my email address:

${!COL1}_${!csvReadStatus}

It goes green and it pastes the email address from the csv file correctly,
but it adds _OK at the end of the email,
for for example if the email from the csv file is name.surname@gmail.com
it pastes in the field name.surname@gmail.com_OK
which is obviously not recognised.

Does anyone know why it does that?
How can I resolve?

Any help would be really appreciated!

It does this because the value of ${!csvReadStatus} is OK.

So instead of {!COL1}_{!csvReadStatus} just use ${!COL1}

1 Like

mmmmmmmmmmmmmmmmmmmmmmmmmm

obviously… not that obvious when you just copy and paste code XD

thank you very much!!