Search found 39 matches

by brgibb
Mon Sep 19, 2016 12:02 pm
Forum: Object Identification and Technologies
Topic: Not able to click on object as it is under fixed header
Replies: 10
Views: 3495

Re: Not able to click on object as it is under fixed header

krstcs,

Apologies for my formatting error: 5.0.3.18203 is the version I meant to write and I appreciate that it is quite old. And thank you for your somewhat short reply.

If there are updates to this functionality that will ease my pain, then I'm very keen to hear about them.
by brgibb
Thu Sep 15, 2016 1:30 pm
Forum: Object Identification and Technologies
Topic: Not able to click on object as it is under fixed header
Replies: 10
Views: 3495

Re: Not able to click on object as it is under fixed header

As Pavel states above it is not really mimicking correct user actions to use PerformClick(); For me this is actually a bug in Ranorex rather than any discrepancy in the development. Ranorex seems to scroll the interface when it doesn't need to during Click(); operations....simple. The usedefaultensu...
by brgibb
Mon Sep 05, 2016 10:41 am
Forum: Object Identification and Technologies
Topic: Not able to click on object as it is under fixed header
Replies: 10
Views: 3495

Re: Not able to click on object as it is under fixed header

I have this exact same problem with a Website developed using Metronic (Keenthemes). The header is "fixed" in the .css and it causes all sorts of issues for Ranorex when trying to click elements. The problem for me more often than not is that even though the element to be clicked is in view right in...
by brgibb
Tue Dec 01, 2015 5:01 pm
Forum: General Questions
Topic: Using PopupWatcher() makes other Threads run slow
Replies: 3
Views: 1316

Re: Using PopupWatcher() makes other Threads run slow

Hi, Thanks for responding..... Yes I changed that setting earlier today like this: Parameters.TestRunPopupWatcher.UpdateInterval = 1000; ....so that it runs once a second.... it was the only thing I could think of. I take it my way of setting that value is just as good as your syntax? (sorry...my ig...
by brgibb
Mon Nov 30, 2015 4:55 pm
Forum: General Questions
Topic: Using PopupWatcher() makes other Threads run slow
Replies: 3
Views: 1316

Using PopupWatcher() makes other Threads run slow

Hi, I recently discovered the PopupWatcher() which allows unexpected dialogs to be dealt with. It works nicely in detecting and dealing with dialogs however I have noticed that now my main thread is running very slowly as a result. What is the priority of the thread used by PopupWatcher()? I execute...
by brgibb
Wed Jun 25, 2014 9:50 am
Forum: General Questions
Topic: Reports Opens After Test Execution but is BLANK in Ranorex 4
Replies: 7
Views: 3087

Re: Reports Opens After Test Execution but is BLANK in Ranorex 4

I'm using Ranorex 5.0.3 and IE10

I disabled the "Enable Protected Mode" but it made no difference.
by brgibb
Mon Jun 16, 2014 3:20 pm
Forum: General Questions
Topic: Reports Opens After Test Execution but is BLANK in Ranorex 4
Replies: 7
Views: 3087

Re: Reports Opens After Test Execution but is BLANK in Ranorex 4

I'm getting this too now. I noticed that my Ranorex reports were blank after resetting all zones in IE to use the default level security settings. Now all my test reports are blank though the data file contains the information. If I copy all of the Report files (.rxlog, .rxlog.data, .css, .png, .xsl...
by brgibb
Wed May 21, 2014 11:14 am
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

Hmmmm...... You see the issue in have now is the opposite..... Setting: <adapter.defaultuseensurevisible> False </adapter.defaultuseensurevisible> ..means that is an element is off screen ...that would I'd ordinarily need to scroll to get to..... it will not scroll to find it, before performing an a...
by brgibb
Thu May 15, 2014 10:20 am
Forum: Object Identification and Technologies
Topic: Validate Location of element - centre of screen
Replies: 3
Views: 3907

Re: Validate Location of element - centre of screen

Most helpful thanks.... I just wondered if this was pre-built in to Ranorex already.

Evidently not.

Thanks again.
by brgibb
Wed May 14, 2014 9:05 am
Forum: Object Identification and Technologies
Topic: Validate Location of element - centre of screen
Replies: 3
Views: 3907

Validate Location of element - centre of screen

This may seem an obvious question but how do you tell if an element is correctly located (horizontally) in the middle of the browser?
by brgibb
Tue May 13, 2014 9:17 am
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

Hi Markus, Yes - indeed it does now click the element without any random scrolling. :-) I have to say I would never have found that file..... thanks. Can you explain (for my understanding) why the scrolling takes in place when the defaultuseensurevisible = True. It seems odd that it happens at all w...
by brgibb
Fri May 09, 2014 9:21 am
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

I'm not using the studio - simply coding C# using the Ranorex libraries.

Anyone from Ranorex know a workaround to this?
by brgibb
Wed May 07, 2014 4:19 pm
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

Thanks for the suggestion. I tried setting it to false for all parent elements from the Dom downwards to the element I want to click.... but alas same behaviour. I can work round the issue for now but I know that in other areas of my interface this is going to cause me a real headache and quite unre...
by brgibb
Wed May 07, 2014 9:04 am
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

Yip - I tried that but no difference in the behavior. The scroll still occurs....
by brgibb
Tue May 06, 2014 4:13 pm
Forum: Object Identification and Technologies
Topic: Unnecessary Scroll when identifying elements.
Replies: 13
Views: 3299

Re: Unnecessary Scroll when identifying elements.

Hi krstcs,

Do you mean like this for a one time operation against that element?

Code: Select all

if RxPathToFeaturesTab.Class != "active")
{
      RxPathToFeaturesTab.UseEnsureVisible = false;
      RxPathToFeaturesTab.Click();
}