Search found 55 matches

by jabelshauser
Tue Jul 15, 2014 1:44 pm
Forum: Bug Reports
Topic: nunit hangs in finalize
Replies: 3
Views: 2770

Re: nunit hangs in finalize

Ranorex Version: 5.0.2 NUnit Version: 2.6.1 The SUT is closed before the finalize is executed. Occurs, if Test executed with the timeout-attribute + RequireSTA. Occurs Not, if Test executed without timeout-attribute but RequireSTA. Behaviour with Ranorex 5.1: Finalizer Thread: > ntdll.dll!_KiFastSys...
by jabelshauser
Thu Jul 10, 2014 12:34 pm
Forum: Bug Reports
Topic: nunit hangs in finalize
Replies: 3
Views: 2770

nunit hangs in finalize

Seems to be caused by this thread (GC Finalizer Thread) > mscorlib.dll!System.GC.SuppressFinalize(object obj) + 0x11 bytes Ranorex.Libs.WinForms.dll!Ranorex.Libs.WinForms.MarshalByRefControlProxy.~MarshalByRefControlProxy() + 0x52 bytes Ranorex.Libs.WinForms.dll!Ranorex.Libs.WinForms.MarshalByRefCon...
by jabelshauser
Tue Apr 29, 2014 12:47 pm
Forum: Automation API
Topic: Application.ResetRanorexCore
Replies: 3
Views: 1857

Re: Application.ResetRanorexCore

We have trouble with our SUT-Side proprietary Assembly-Resolving. We have to load assemblies via Assembly.LoadFrom() (LoadFrom assembly context). Ranorex seems to also load assemblies in the SUT (in the LoadNeither assembly context) that it had loaded in the test side during previous tests. A possib...
by jabelshauser
Tue Apr 29, 2014 10:14 am
Forum: Automation API
Topic: Application.ResetRanorexCore
Replies: 3
Views: 1857

Application.ResetRanorexCore

Is there a analogy to the Application.ResetRanorexCore in the actual version ? (5.0.2)
by jabelshauser
Tue Apr 23, 2013 9:47 am
Forum: Object Identification and Technologies
Topic: How to identify checkbox ahead treenode with Spy
Replies: 8
Views: 3403

Re: How to identify checkbox ahead treenode with Spy

i have the same problem, but i want additionaly read if the checkbox is checked or not. My Questions: - TreeItem.Checked is not comprehensible, in my treeview it is always false, regardless if checkbox is checked or not, or selected, or what else - The obsolete TreeView had the capapbility to do tha...
by jabelshauser
Mon Apr 15, 2013 9:45 am
Forum: Object Identification and Technologies
Topic: apostroph in RxPath
Replies: 2
Views: 2240

apostroph in RxPath

how can an accessiblename which contains an apostroph used with RxPath?

attached a snaphot.
The Spy resolves this Element in different ways, this is incomprehensible
Image-0019.png
Image-0018.png
Thanks jörg
by jabelshauser
Wed Feb 06, 2013 12:40 pm
Forum: Object Identification and Technologies
Topic: Element.Children seems not to return invisble children
Replies: 8
Views: 2753

Re: Element.Children seems not to return invisble children

Solution:
Configuration.Current["plugins.msaa.FilterEnabled"] = false;
only necessary in case of invisible children ?!?

Support should give further explanation...
by jabelshauser
Mon Feb 04, 2013 3:38 pm
Forum: Object Identification and Technologies
Topic: Element.Children seems not to return invisble children
Replies: 8
Views: 2753

Re: Element.Children seems not to return invisble children

simplified code: Element el_row = table.Children ; //returns an invisible row and should have some also invisible cells el_row.Children.Count // = 0 -> but el_row has invisible Children (cells) Here you can download the snapshot: http://dl.dropbox.com/u/27488736/gridControl.rxsnp table: ../gridSegme...
by jabelshauser
Thu Jan 31, 2013 8:45 am
Forum: Object Identification and Technologies
Topic: Element.Children seems not to return invisble children
Replies: 8
Views: 2753

Re: Element.Children seems not to return invisble children

yes, Spy show also the invisible children, but in Debugger child-count = 0
see. attached .png
by jabelshauser
Wed Jan 30, 2013 10:21 am
Forum: Object Identification and Technologies
Topic: Element.Children seems not to return invisble children
Replies: 8
Views: 2753

Element.Children seems not to return invisble children

Element.Children seems not to return invisble children
Are there any adjustments necessary, e.g. filter ?

Regards Jörg
by jabelshauser
Wed Jan 30, 2013 10:15 am
Forum: Object Identification and Technologies
Topic: Problem Splitting RxPath expressions
Replies: 6
Views: 2178

Re: Problem Splitting RxPath expressions

update to ranorex 4 -> ok
by jabelshauser
Wed Jan 16, 2013 10:31 am
Forum: Object Identification and Technologies
Topic: Problem Splitting RxPath expressions
Replies: 6
Views: 2178

Re: Problem Splitting RxPath expressions

- The forms-list contains only 1 form. so the form must be right one
- The full path search is succesful. In this case, the control is found.

another test: if i use the whole spare-path, also no success.
forms[0].Find(new RxPath("./element/container/container[@controlname='MyControl']"));
by jabelshauser
Wed Jan 16, 2013 7:52 am
Forum: Object Identification and Technologies
Topic: Problem Splitting RxPath expressions
Replies: 6
Views: 2178

Re: Problem Splitting RxPath expressions

IList<Element> forms = Host.Local.Find(new RxPath("/form[@controlname='ContainerForm']")); form is now avl. in forms[0] IList<Element> els = forms[0].Find(new RxPath(".//container[@controlname='MyControl']")); no element found, els.Count = 0 timeout: if i do a single find like: Host.Local.Find(new R...
by jabelshauser
Tue Jan 15, 2013 1:27 pm
Forum: Object Identification and Technologies
Topic: Problem Splitting RxPath expressions
Replies: 6
Views: 2178

Problem Splitting RxPath expressions

"MyControl" can be found with following RxPath: /form[@controlname='ContainerForm']/element/container/container[@controlname='MyControl'] But i want it to split in: - /form[@controlname='ContainerForm'] AND ./container[@controlname='MyControl'] OR .//container[@controlname='MyControl'] But the contr...