Hello, I am creating one test where I upload document.
First I store path:
{
“Command”: “store”,
“Target”: “c:\Users\hauserto\tom4s\TEST\Kantu\Upload_FILETYPES\”,
“Value”: “global_C_FILES”
}
then I use it like this when entering path + filename into windows system dialog:
{
“Command”: “XType”,
“Target”: “${global_C_FILES}testDocumentType.docm”,
“Value”: “”
}
But the xType command write this into windows system dialog:
c:\Users\hausertoom4s\TEST\Kantu\Upload_FILETYPES\testDocumentType.docm
it should be this:
c:\Users\hauserto\tom4s\TEST\Kantu\Upload_FILETYPES\testDocumentType.docm
Is it because \t == TABULATOR and it is removed from xType insert?
What I can do with this?
When I do it directly (not using variable to store patht) - it is working:
{
“Command”: “XType”,
“Target”: “c:\Users\hauserto\tom4s\TEST\Kantu\Upload_FILETYPES\testDocumentType.docm”,
“Value”: “”
}
–
Thank you
–
Best regards
Tomas