cancel
Showing results for 
Search instead for 
Did you mean: 

Getting parse error. Character '@' (U+0040) is not a valid identifier while building new workflow

0 Kudos

We are trying to automate one cloud platform web application using IRPA, in the pasword field passing which contains special characters like @, ! . When try to build the workflow, getting an error as 'parser error. Character '@' (U+0040) is not a valid identifier'

Script line:

Test.ptest.oJ_pwd.set(Test@1234);

Accepted Solutions (1)

Accepted Solutions (1)

former_member651398
Participant

Hello Bhagya,

Could you please try with keeping the password within double quotes (" ").

The script would be as below:

Test.ptest.oJ_pwd.set("Test@1234");
0 Kudos

Thanks a lot, my bad. I should have sent input as string. It worked.

Answers (0)