Hi everyone,
I have a question. I'm using robot framework for automated testing and I'm stuck.
For my automated test i want to fill an XML request with a couple of variables.
Adding the variables in te XML string goes well, but Robot Framework automatically deletes the double quotes in the XML string.
Because of Robot Framework automatically deleting the double quotes the XML string gets filled in my form without the double quotes which causes an error in the webview I'm using.
Is there any way to let Robot Framework use a String variable with multple double quotes inside the string without deleting them?
I already tried things like putting the double quotes between 2 double quotes ("""). tried using backslash before the double quote(/") but nothing seems to work.