Search found 12 matches

by ancleg
Wed Nov 13, 2019 5:17 pm
Forum: General Questions
Topic: Test reports to non-ranorex users, how?
Replies: 35
Views: 19948

Re: Test reports to non-ranorex users, how?

Hello, There's actually a standalone Ranorex.ReportViewer available here: https://upload.ranorex.com/s/pA5T9L2iqREXaNp No installation of Ranorex required, nor any licenses leased. Hope this helps. Sincerely, Robert Is this future-proof (I assume not), and if not, how would we locate a version for ...
by ancleg
Fri Feb 15, 2019 8:12 pm
Forum: Bug Reports
Topic: Ranorex 9 - @Visible='true' being ignored?
Replies: 11
Views: 2932

Re: Ranorex 9 - @Visible='true' being ignored?

Hello ancleg, We introduced a performance feature which could cause this issue in specific situations. Would you mind trying to disable the setting "Enable JS acceleration for ID9+ without addon" in the plugin settings? In order to do so please open settings dialog in Ranorex Studio or Ranorex Spy ...
by ancleg
Thu Feb 14, 2019 5:12 pm
Forum: Bug Reports
Topic: Ranorex 9 - @Visible='true' being ignored?
Replies: 11
Views: 2932

Ranorex 9 - @Visible='true' being ignored?

I have an xpath that contains "@visible='true'" in the deepest level of the xpath. However when I spy with it, it is finding some entries that have "Visible=False" I'd prefer not to post a snapshot but will post a screenshot of what I'm seeing in spy -> https://imgur.com/t3TkwPf It is finding the fi...
by ancleg
Wed Feb 06, 2019 10:17 pm
Forum: General Questions
Topic: Good practices for maintaining scripts into the future
Replies: 1
Views: 1060

Good practices for maintaining scripts into the future

Trying to do a bit of planning for the future here. Our problem: We have scripts that run now, but say version 10 comes out of our software and we need to change the script. We would like our "old" script to keep running in-case we need to redo anything, so some thoughts we've had: Copy the project ...
by ancleg
Mon Feb 04, 2019 9:19 pm
Forum: General Questions
Topic: How to lower quality of a screenshot?
Replies: 1
Views: 7982

How to lower quality of a screenshot?

Any way to lower the quality of a screenshot? They aren't large files but we really don't need as much detail as provided, so would prefer to cut it down. Also don't want to provide a narrower xpath, as it takes (slightly) more time to find the xpath to screenshot, just if we could have the file siz...
by ancleg
Mon Jan 21, 2019 3:47 pm
Forum: Automation Tools
Topic: Docking browser windows
Replies: 4
Views: 1321

Re: Docking browser windows

You could do each key sequence in one step also, for cleanliness.

Code: Select all

{LWin down}{Left}{LWin up}
and

Code: Select all

{LWin down}{Right}{LWin up}
by ancleg
Thu Jan 17, 2019 9:20 pm
Forum: Bug Reports
Topic: Description of UserCode Methods does not carry over when Imported
Replies: 1
Views: 1647

Description of UserCode Methods does not carry over when Imported

https://i.imgur.com/G1dnU90.png ^ Description on import ^ https://i.imgur.com/gLgDJnR.png ^ Code in the Project ^ I have written a .DLL Library that we plan to use on multiple projects. These functions can be fairly involved, so a description would be nice. However, the Description fields do not ca...
by ancleg
Mon Jan 14, 2019 7:18 pm
Forum: Object Identification and Technologies
Topic: XPath code for "Most Recent Ancestor", and other keywords
Replies: 7
Views: 3709

Re: XPath code for "Most Recent Ancestor", and other keywords

We have been able to get the correct item, the issue is we are trying to get the same UI element in two different versions of our software, with the same path. We have one path that works for both but has an ugly OR inside it, which could prevent us from extending the path's value into future versio...
by ancleg
Mon Jan 14, 2019 3:52 pm
Forum: Object Identification and Technologies
Topic: XPath code for "Most Recent Ancestor", and other keywords
Replies: 7
Views: 3709

Re: XPath code for "Most Recent Ancestor", and other keywords

Hey, You can use the "ancestor" as shown below: .../ancestor::list where "list" is the requested type. Cheers, Robin :mrgreen: Issue with this is it finds ALL ancestors of type List. I just want the most recent ancestor. Something like the syntax for div[0] but for ancestor[0]::list would be useful...
by ancleg
Fri Jan 11, 2019 8:53 pm
Forum: Object Identification and Technologies
Topic: XPath code for "Most Recent Ancestor", and other keywords
Replies: 7
Views: 3709

XPath code for "Most Recent Ancestor", and other keywords

Also is there any list anywhere of what the keywords are for ranoreXpaths? https://www.ranorex.com/help/latest/ranorex-studio-advanced/ranorexpath/ranorexpath-blueprint/ <- this article says Examples for axis specifiers are /, //, .., ancestor, and others. They will be described in more detail later...
by ancleg
Wed Jan 02, 2019 4:44 pm
Forum: How To …
Topic: Using a Variable as value to pass into "Delay"
Replies: 3
Views: 2267

Re: Using a Variable as value to pass into "Delay"

So I actually did solve that one, and realized what caused my initial problem in the first place. I used a Variable named "Delay" This created the variable in the local .cs file, which overwrote the Ranorex.Delay (or Ranorex.Core.Delay, whatever it is) as being the correct "Delay" that it should hav...
by ancleg
Thu Dec 20, 2018 4:07 pm
Forum: How To …
Topic: Using a Variable as value to pass into "Delay"
Replies: 3
Views: 2267

Using a Variable as value to pass into "Delay"

So it seems that the "Delay" function takes in a value-checked String, but passing a similarly formatted String causes it to fail to compile. Could workaround this by writing my own Delay function that would parse the string itself, but would obviously like to avoid that. The goal with parameterizin...