Search found 30 matches

by i.vasilyev
Tue Jul 11, 2017 3:14 pm
Forum: How To …
Topic: Run tests on automation machine remotely
Replies: 4
Views: 6696

Re: Run tests on automation machine remotely

Ok, got it. But maybe somebody can provide an example of best practice? How to use Win Server for automation and how to get FULLY REALIZED AND UNLOCKED DESKTOP for a server?
by i.vasilyev
Tue Jul 11, 2017 2:41 pm
Forum: Automation API
Topic: Search all cells from specific column in table
Replies: 4
Views: 2419

Re: Search all cells from specific column in table

Nope. I'm not able. It is a common question I'm not sure that it depends on specific RxPath or specific element
by i.vasilyev
Mon Jul 10, 2017 1:38 pm
Forum: How To …
Topic: Run tests on automation machine remotely
Replies: 4
Views: 6696

Run tests on automation machine remotely

Hello. AUT: desktop app I have an automation machine(win server 12) with installed Ranorex and I want to execute automated tests in that machine. The problem is: I always should keep alive RDP session with the automation machine, otherwise tests will be marked as failed. How can I solved this proble...
by i.vasilyev
Fri Jul 07, 2017 3:02 pm
Forum: Automation API
Topic: Search all cells from specific column in table
Replies: 4
Views: 2419

Search all cells from specific column in table

Hello I have a problem with searching of all cells from specific column in table. The table has more than 800 rows. AUT: Desktop app Ranorex 7 I'm not using the Ranorex Studio, I'm using VS + Ranorex.Core lib var rows = Host.Local.Find<Cell>("/form/table/row/cell[7]"); Result: rows.Count is 209 cell...
by i.vasilyev
Wed Jun 28, 2017 9:18 am
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Re: Caching of elements

I had a call with Ranorex Support team and we tried to use Ranorex Studio and repositories, but there are no visible benefits of using studio+repository. I'm talking about searching perfomance. Looks like it is because of our application's element structure, but not sure. The problem is, that if the...
by i.vasilyev
Wed Jun 28, 2017 8:50 am
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Re: Caching of elements

var myForm = new Ranorex.Form(Host.Local.FindSingle("/form")); myForm.FindSingle<Ranorex.Unknown>("/element1").PressKeys("blah Blah Blah"); As I expected this solution not helped me. The search time is the same. Can you provide some other way? Is it possible to use multithreading for finding two or...
by i.vasilyev
Tue Jun 27, 2017 7:13 pm
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Re: Caching of elements

Are you doing a FindSingle on the host each time or have you stuck the application into a variable and doing a findsingle on that? Yes, i'm doing FindSingle on the Host each time Will try to use your example, but not sure that it will help me because looks like a problem with a form itself(too many...
by i.vasilyev
Tue Jun 27, 2017 3:28 pm
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Re: Caching of elements

I'm not using the repository and ranorex studio. I'm using VS+Ranorex.Core library. It means that i'm using FindSingle each time.
by i.vasilyev
Tue Jun 27, 2017 3:09 pm
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Re: Caching of elements

It looks as following:
/form/element1/element/tabpagelist/textbox1
Are you using rooted folders in the repository?
I'm not sure that I know what is it
by i.vasilyev
Tue Jun 27, 2017 2:37 pm
Forum: Automation API
Topic: Caching of elements
Replies: 10
Views: 2936

Caching of elements

Ranorex v7.0.1 Windows 10 Pro Windows desktop application VS2015 Hello. I have a problem. I want to fill in required fields in form. The number of fields is more then 10. Finding of one element takes about 7 seconds(I was talking with support team and all possible things were done for optimize perfo...
by i.vasilyev
Thu Jun 15, 2017 1:12 pm
Forum: Automation API
Topic: Ranorex.Control does not exist
Replies: 7
Views: 2521

Re: Ranorex.Control does not exist

Ranorex.Plugin.WinForms was missed. The problem is solved
by i.vasilyev
Thu Jun 15, 2017 11:37 am
Forum: Automation API
Topic: Ranorex.Control does not exist
Replies: 7
Views: 2521

Re: Ranorex.Control does not exist

Can you provide your example? With usings please
by i.vasilyev
Wed Jun 14, 2017 3:41 pm
Forum: Automation API
Topic: Ranorex.Control does not exist
Replies: 7
Views: 2521

Re: Ranorex.Control does not exist

Ranorex version 7.0.1
I'm asking not about some ranorex element or something similar. I'm asking about Control class and how can I get access to it and use InvokeRemotely method?

https://www.ranorex.com/Documentation/R ... ontrol.htm
by i.vasilyev
Wed Jun 14, 2017 2:57 pm
Forum: Automation API
Topic: Ranorex.Control does not exist
Replies: 7
Views: 2521

Re: Ranorex.Control does not exist

Sorry, how is the snapshot related to my question?
by i.vasilyev
Wed Jun 14, 2017 2:36 pm
Forum: Automation API
Topic: Ranorex.Control does not exist
Replies: 7
Views: 2521

Ranorex.Control does not exist

Hello. I want to get cell colour and I found following post: https://www.ranorex.com/forum/get-background-color-for-ranorex-cell-objects-t6869.html#p28331 But I recieved following error: The type or namespace name 'Control' does not exist in the namespace 'Ranorex' (are you missing an assembly refer...