Search found 10 matches

by Starlord
Tue Jun 23, 2015 6:49 pm
Forum: General Questions
Topic: How to validate radio buttons using existing data?
Replies: 2
Views: 1555

Re: How to validate radio buttons using existing data?

Hi Shuai, I think I replied to your other post about the recording to Excel and using the same file to validate. However, I think you will find that there are quite a few ways to implement the data driven testing and you can surely automate the data creation portion of this as well. There are actual...
by Starlord
Tue Jun 23, 2015 5:57 pm
Forum: General Questions
Topic: How to write validation results to an excel file?
Replies: 4
Views: 2636

Re: How to write validation results to an excel file?

Hi Shuai, I have done something similar to this in my test case. You should be able to use the .NET functions for excel by referencing Microsoft.Office.Interop.Excel in your project, then you can write out to the excel file. There is some useful details in this post: http://www.ranorex.com/forum/my-...
by Starlord
Tue Jun 02, 2015 6:24 pm
Forum: General Questions
Topic: Ranorex IDE Shortcuts
Replies: 2
Views: 1667

Re: Ranorex IDE Shortcuts

Hi Cliving,
Are you looking for a short cut for to close the test script during Execution? If so try {shift}+{esc}.
The basic shortcuts are available for the IDE and are similar to the ones in visual studio.
Hope this helps
Cheers
by Starlord
Tue Jun 02, 2015 4:40 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1466

Re: Can't put mouse over keepass when tracking

Hi, I think I have an idea about what is going on. This is most likely a security issue. Are you running Ranorex as admin? If KeePass is running as admin and Ranorex is not then the system security will not allow Ranorex to access the elements or move the mouse over the KeePass window. Try running R...
by Starlord
Tue Jun 02, 2015 3:17 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1466

Re: Can't put mouse over keepass when tracking

Hi,

See if this helps restore the mouse behavior:
1.Go to the Spy settings.
2.Then on the advanced tab uncheck the “Use asynchronous dispatching of mouse and keyboard events”.

Cheers.
by Starlord
Tue Jun 02, 2015 1:16 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1466

Re: Can't put mouse over keepass when tracking

Hi, What is your OS? And what version of Ranorex are you running? I have seen a similar issue with Windows 8 machines sometimes with multiple monitors and usually you have to check the “Let me choose one scaling level for all my displays “option in the “Display” system settings. Hope this helps Cheers
by Starlord
Mon Jun 01, 2015 3:57 pm
Forum: Automation Tools
Topic: Mix of DEBUG and RELEASE in configuration - How to solve?
Replies: 11
Views: 6158

Re: Mix of DEBUG and RELEASE in configuration - How to solve?

Hi, I have run across a similar issues but it was in Visual Studio. This my case the issue was related to some corrupted references in Source Control. Anyways I was able to fix the issue by deleting the Debug folder and resetting all of the project build settings to Release; then I did a clean rebui...
by Starlord
Thu May 21, 2015 9:23 pm
Forum: Automation API
Topic: Debug doesn't work on Visual Studio 2012
Replies: 5
Views: 3268

Re: Debug doesn't work on Visual Studio 2012

Hi Guys, I had the same issue using a trial key and it seems that this bug is related to the coded UI test debugger. Please find more information on the following link MSDN Forum I can also confirm that this problem only occurs when using a trial key. Everything seems works as expected with a normal...
by Starlord
Wed May 20, 2015 8:52 pm
Forum: General Questions
Topic: object error message
Replies: 2
Views: 1362

Re: object error message

Hi There, I think I have seen this error mentioned in the forum thread below: Click me This seems to be related to one of the previous releases, what is your Ranorex Version number? If this is not an issue related to the issue in the previous post then we might have to get a snapshot of what is goin...
by Starlord
Mon May 18, 2015 4:03 pm
Forum: Automation API
Topic: access data/iteration in data driven test case
Replies: 6
Views: 2585

Re: access data/iteration in data driven test case

Hello Betty, It seems you are trying to assign the value in the variable to the column index position. The reason you are getting the “Integer Expected” error is because the value in the variable is stored as a String. You will need to convert the variable to an integer before the assignment. You co...