Search found 92 matches

by Swisside
Wed Mar 26, 2014 9:35 am
Forum: General Questions
Topic: Testsuite Runner and Runtime license
Replies: 2
Views: 1484

Re: Testsuite Runner and Runtime license

Thanks,

I knew you could use the command line but it is not really straight forward if we want the client to be able to specific test or part of them.

Regards

Swiss
by Swisside
Tue Mar 25, 2014 1:22 pm
Forum: General Questions
Topic: Testsuite Runner and Runtime license
Replies: 2
Views: 1484

Testsuite Runner and Runtime license

Hello, Under the runtime license option it is writting The Ranorex Runtime License enables you to execute Ranorex based test scripts and projects. Does it mean Ranorex Test Suite Runner is included with that license ? Or does it only allows to execute .exe with the command line ? Thanks in advance, ...
by Swisside
Mon Mar 24, 2014 6:10 pm
Forum: General Questions
Topic: Close a child form from a parent
Replies: 2
Views: 1667

Re: Close a child form from a parent

Hello !

Would this work :
Form father = myrepo.myform.Self;
Form child = father.Children[0];
child.Close();
Regards

Swiss'
by Swisside
Mon Mar 24, 2014 10:25 am
Forum: Automation API
Topic: Image recognisation and validation
Replies: 9
Views: 3034

Re: Image recognisation and validation

Hello,

Have a look at http://www.ranorex.com/support/user-gui ... html#c3325

Is it what you were looking for ?


Regards

Swis
by Swisside
Mon Mar 03, 2014 11:06 am
Forum: Object Identification and Technologies
Topic: Get RepoItemInfo from RepoItem
Replies: 5
Views: 3753

Re: Get RepoItemInfo from RepoItem

Hello

Does something like table.SelfInfo work for you?


Regards
by Swisside
Fri Feb 28, 2014 9:05 am
Forum: General Questions
Topic: Run, Run to Cursor, break -Efficient Use of Ranorex function
Replies: 8
Views: 2959

Re: Run, Run to Cursor, break -Efficient Use of Ranorex function

Hi

Please see attachment regarding how to disable reports generation.


I'm not sure what you mean by "Run To Cursor". Could you post a screenshot of it?


Regards

Swiss'
by Swisside
Thu Feb 27, 2014 9:13 am
Forum: General Questions
Topic: Run, Run to Cursor, break -Efficient Use of Ranorex function
Replies: 8
Views: 2959

Re: Run, Run to Cursor, break -Efficient Use of Ranorex function

Hello You'll find the answers I have to give you below I would like to ask, and mind you I searched the Forum and searched the “User Guide,” but did not find the answer; is the a button whereby the TestSuite is executed to the end from any given rxrec module? I am now down to ¾ editing of the test c...
by Swisside
Thu Feb 20, 2014 11:21 am
Forum: Automation Discussions
Topic: How to set the string value to RepoItemInfo object?
Replies: 3
Views: 5944

Re: How to set the string value to RepoItemInfo object?

Hello,

I'm not sure I understand what you want to do with this method.

If you check the attached printscreen there is no way of actually passing a parameter in a RepoItemInfo. Unless I missunderstood what you mean by "stores it into RepoItemInfo Object".

Could you develop a bit ?


Regards

Swiss'
by Swisside
Mon Feb 17, 2014 3:50 pm
Forum: Object Identification and Technologies
Topic: How to automate browsing in link areas?
Replies: 2
Views: 3004

Re: How to automate browsing in link areas?

Hello ! I'm not used to testing HTML but I found a way to do it : You will find a working example attached to this post :) Here are the steps: 1) In this case I added the DIVTag to a repository. (You could easily adapt this) 2) We find the ul descendant 3) We find all the li descendants 4) foreach l...
by Swisside
Mon Feb 17, 2014 3:20 pm
Forum: General Questions
Topic: Play a module with bound variables
Replies: 2
Views: 1417

Re: Play a module with bound variables

Hi

I'm pretty sure the module variable takes the value of the global parameter when you run the suite. Therefore the "default" value is overwritten. Isn't it the case ?


Regards
by Swisside
Mon Feb 17, 2014 9:41 am
Forum: General Questions
Topic: CreateAdapter with click location editing
Replies: 4
Views: 2685

Re: CreateAdapter with click location editing

Hi, After reading through your code snippets I think the previous developer wrote something very complicated to execute a very simple action. I could propose something much simpler but I'm not sure it's what you are looking for. The error is quite simple to resolve it only means that Ranorex cannot ...
by Swisside
Fri Feb 14, 2014 8:11 am
Forum: Automation Tools
Topic: Is possible to write code without Object repository
Replies: 3
Views: 3414

Re: Is possible to write code without Object repository

Hello.

All the information you need is available online here : http://www.ranorex.com/Documentation/Ranorex/ or directly in Ranorex under Help -> API Documentation.

I was in your state few months ago, if you have any question I'd be happy to help.


Regards


Swiss
by Swisside
Fri Feb 14, 2014 7:54 am
Forum: General Questions
Topic: Accessing License server from another network domain
Replies: 8
Views: 5176

Re: Accessing License server from another network domain

Hi ! First regarding the port issue I found the following bit of information in the Ranorex License Server Documentation : Note: To prevent firewalls from blocking communication between license server and client, it is required to open port 7266 for TCP and UDP access on the server. Therefore I'm no...
by Swisside
Mon Feb 10, 2014 1:45 pm
Forum: Automation Tools
Topic: Can't select item in the context menu (right click)
Replies: 1
Views: 2994

Re: Can't select item in the context menu (right click)

Hello

Could you provide a snapshot of the context menu ?


Regards


Swisside
by Swisside
Fri Feb 07, 2014 3:22 pm
Forum: Automation API
Topic: check visibility
Replies: 6
Views: 4082

Re: check visibility

Hello If you want to use Exist() you need to do as follows : if(repo.MyItem Info .Exists()) { Report.Info("It exists"); } else { Report.Info("It doesn't!"); } N.B. Ranorex will search for the item until the timeout specified in the repository is reached. So if you want for Ranorex to be faster you c...