Search found 16 matches

by Bat
Tue Jun 02, 2015 7:09 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1475

Re: Can't put mouse over keepass when tracking

Working like a charm. Thanks!
by Bat
Tue Jun 02, 2015 3:39 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1475

Re: Can't put mouse over keepass when tracking

Ok, tried unchecking that option and it let me get the mouse over the window now but it was having issues finding objects on keepass.

Is there some dependency I need to install along side Ranorex? Perhaps a .Net framework? I'm sure it installed but it might help to update / repair it.
by Bat
Tue Jun 02, 2015 3:08 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1475

Re: Can't put mouse over keepass when tracking

I'm running Windows 7 x 64. I checked out the display options but on windows 7 there is no "Let me choose one scaling level for all my displays." I did try switching between Regular / Larger / etc with no luck.


Ranorex Version 5.3.2.23378
by Bat
Mon Jun 01, 2015 9:16 pm
Forum: General Questions
Topic: Can't put mouse over keepass when tracking
Replies: 6
Views: 1475

Can't put mouse over keepass when tracking

I've got this really strange issue that, when using the view spy to track an object on keepass I can't seem to put my mouse over it. As soon as I move the mouse into the keepass window it pushes the curser to the outside of the window. I'm running the latest version of Ranorex. Any idea? Edit: Ranor...
by Bat
Fri Apr 10, 2015 3:41 pm
Forum: General Questions
Topic: CommandLine "/help" not working
Replies: 4
Views: 1319

Re: CommandLine "/help" not working

Ah, I think I found the issue. It's called from TestSuiteRunner and not TestModuleRunner.
by Bat
Fri Apr 10, 2015 3:24 pm
Forum: General Questions
Topic: CommandLine "/help" not working
Replies: 4
Views: 1319

Re: CommandLine "/help" not working

Pretty positive.
I'm in the bin/Release folder running the program like this "RanorexTest.exe /help"

I've just updated to the latest version too and it's still not working. :?
by Bat
Fri Apr 10, 2015 2:52 pm
Forum: General Questions
Topic: CommandLine "/help" not working
Replies: 4
Views: 1319

CommandLine "/help" not working

I'm trying to get the help commands from the command by passing the argument "/help" and no help output is displayed. Instead, Ranorex runs normally with "/help" being passed as an args in code.

I've also tried running "/?" with the same results.


Any idea?
by Bat
Wed Oct 08, 2014 1:45 pm
Forum: General Questions
Topic: Specific RanoreXpath Weights
Replies: 9
Views: 2449

Re: Specific RanoreXpath Weights

Ok, I wasn't sure why it wasn't showing up but now that you say the element must have that attribute it seems obvious. Thanks! The general attribute that you see under Ranorex Spy when you look at the Path Editor. Specifically the Index. For example /div[2] has an index of 2. Looking under the weigh...
by Bat
Fri Oct 03, 2014 2:17 pm
Forum: General Questions
Topic: Specific RanoreXpath Weights
Replies: 9
Views: 2449

Re: Specific RanoreXpath Weights

Well, it happened again, though it looks like it just isn't displaying "data-rx" but is actually still there. You can see that Attribute is blank but when you share the rule it still has data-rx in it. Also, I'm using: Version 5.1.3.19973 Windows 7 x 64 Edit: Is there a way to play with the General ...
by Bat
Fri Oct 03, 2014 2:11 pm
Forum: General Questions
Topic: Specific RanoreXpath Weights
Replies: 9
Views: 2449

Re: Specific RanoreXpath Weights

I went ahead and disabled the Search by Unique id and played around with the rules some more and I noticed something. My Attribute value of "data-rx" was getting removed after opening the Weight Rules. Not sure how it was happening, so I just tried to recreate the problem and it seems to be holding ...
by Bat
Mon Sep 29, 2014 6:21 pm
Forum: General Questions
Topic: Specific RanoreXpath Weights
Replies: 9
Views: 2449

Re: Specific RanoreXpath Weights

Exactly. I would like ranorex to use "data-rx" over anything else if it is available. I've been told that the unique id may not be constant and is possible to change down the line.
by Bat
Wed Sep 24, 2014 4:16 pm
Forum: General Questions
Topic: Specific RanoreXpath Weights
Replies: 9
Views: 2449

Specific RanoreXpath Weights

I'm trying to setup the view spy to recognize my testing specific tag "data-rx" for our web page. I've setup the Weight Rule as fallows: Name: DataRX Capability: dynamic Attribute: data-rx Set Weight: 250 Match Conditions: Any No Rules When I spy on the object it doesn't pick up the path unless I di...
by Bat
Wed Sep 24, 2014 4:09 pm
Forum: General Questions
Topic: change of duration
Replies: 2
Views: 1804

Re: change of duration

Make sure the timeout for it's parent folder is also set to a desirable value. It adds up the values from it's parents.

Ex.
AppFolder - 30 sec
RootedFolder - 15 sec
item - 1 sec

Total Timeout = 46 sec for item
by Bat
Thu Jul 31, 2014 2:45 pm
Forum: Object Identification and Technologies
Topic: how to get true or false from validation
Replies: 4
Views: 4915

Re: how to get true or false from validation

Validate.Attribute() returns void (Which you found out). I'm pretty sure if the validation fails on the object it'll break the current case and report it on the log.

Instead of using validation use something like

Code: Select all

if(textSearchable=="y" && repo.smth.Checked==TRUE){
//do this
}
else {
//this
}
by Bat
Thu Jul 31, 2014 2:42 pm
Forum: Object Identification and Technologies
Topic: Does not recognize tabs!
Replies: 4
Views: 2245

Re: Does not recognize tabs!

If I had to take a guess without seeing everything it's that it's timing out. Trying declaring the RxPath of the tabpage with the text (name) of the tab. Like such tabpage[@text='Patients'] for the bold parts of the code /form[@title='Medicomp Beacon']// tabpage[@index='0' and @controltypename='TabP...