3.0 Command line implementaion

Ask general questions here.
JoeR
Posts: 32
Joined: Fri Dec 03, 2010 6:15 pm
Location: Morrisville, NC
Contact:

3.0 Command line implementaion

Post by JoeR » Wed Apr 27, 2011 4:18 pm

Has anyone seen an issue with the Ranorex 3.0 command line implemention. It appears that if you have a space in the value of a variable Ranorex views that as the end of the value. I have tired single and double quotes to know avail.

The value I am using is:

/pa:BuilderLogin=john{LShiftKey down}@{LShiftKey up}automate1.com

Ranorex 3.0 resolves that string as john{LShiftKey

It does that with or without quotes.

Any ideas?

Joe

User avatar
Support Team
Site Admin
Site Admin
Posts: 12145
Joined: Fri Jul 07, 2006 4:30 pm
Location: Houston, Texas, USA
Contact:

Re: 3.0 Command line implementaion

Post by Support Team » Wed Apr 27, 2011 4:25 pm

Hi,

You have to put these characters
JoeR wrote:BuilderLogin=john{LShiftKey down}@{LShiftKey up}automate1.com
under quotes.
Example:
yourTestSuite.exe /pa:"BuilderLogin=john{LShiftKey down}@{LShiftKey up}automate1.com"
Regards,
Peter
Ranorex Team

JoeR
Posts: 32
Joined: Fri Dec 03, 2010 6:15 pm
Location: Morrisville, NC
Contact:

Re: 3.0 Command line implementaion

Post by JoeR » Wed Apr 27, 2011 4:30 pm

Thanks that solved my issue. I had been putting the quotes around the value only.