Search found 152 matches

by Martin
Tue Mar 14, 2017 8:51 am
Forum: General Questions
Topic: What's your solution for Jenkins?
Replies: 4
Views: 2143

Re: What's your solution for Jenkins?

Mine is as follows: Windows Server 2008 (one of only about 3 Windows servers in the company) - ----Jenkins Server (for test builds and test execution, includes report publishing) ----SQL Server ----Ranorex License Server ----Ranorex 6.2.1 (for build) ----.NET SDK (4.5 max) ----GitHub Desktop 8 Wind...
by Martin
Mon Mar 13, 2017 11:56 am
Forum: General Questions
Topic: What's your solution for Jenkins?
Replies: 4
Views: 2143

Re: What's your solution for Jenkins?

For us Jenkins is configured as followed: Jenkins itself runs on a Linux machine. We have a Windows Server 2008 machine to run the automation. This Windows machine is connected to Jenkins by Jenkins Slave Agent (https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds) We have Git repository o...
by Martin
Mon Feb 20, 2017 2:17 pm
Forum: General Questions
Topic: Sharing a test and hiding a password?
Replies: 5
Views: 3169

Re: Sharing a test and hiding a password?

Hi, I'm afraid, there is no possibility to hide user names/passwords in test suite files. The only possibility I see is to not include the user credentials in the test suite at all and simply pass them via command line and global parameters connected to required test module variables. This way, nob...
by Martin
Tue Feb 07, 2017 1:43 pm
Forum: General Questions
Topic: Licence server hosted by Ranorex
Replies: 3
Views: 1316

Re: Licence server hosted by Ranorex

I would suggest you to either contact Ranorex straight or post the request here http://www.ranorex.com/blog/ranorex-user-voice-make-your-ideas-count/?utm_source=Ranorex-Facebook&utm_medium=facebook&utm_campaign=uservoice As i've been told - feature requests aren't taken into consideration when poste...
by Martin
Mon Feb 06, 2017 2:00 pm
Forum: General Questions
Topic: Framework development
Replies: 7
Views: 1981

Re: Framework development

This is what Ranorex Studio does. When you link the funcationality you've explained to an excel data sheet, you actually make the manageing and creating of test cases worse. Plus in many cases you would lose many useful functionalities covered by Ranorex. I really can't see any benefit for this comp...
by Martin
Mon Feb 06, 2017 12:54 pm
Forum: General Questions
Topic: Ranorex TEAM is AWESOME!
Replies: 6
Views: 1353

Re: Ranorex TEAM is AWESOME!

I can't agree more! You have made an awesome product with great personal support. And the way you have made the community come together around it is great as well!

By the way - love the second post! :D
by Martin
Thu Jan 26, 2017 2:41 pm
Forum: Automation Tools
Topic: Feature request: Show repo item comment in tooltip
Replies: 5
Views: 1838

Re: Feature request: Show repo item comment in tooltip

Thanks for your reply. Noted!
by Martin
Thu Jan 26, 2017 2:08 pm
Forum: Automation Tools
Topic: Feature request: Show repo item comment in tooltip
Replies: 5
Views: 1838

Feature request: Show repo item comment in tooltip

Hello!

I have a feature request related to displaying the comments added for repository items in code modules tooltip.
featurerequest.png
Can't really see from my side any needed additional information.

Looking forward for a reply,
Martin
by Martin
Thu Jan 26, 2017 9:07 am
Forum: Automation Tools
Topic: How to pass Data Source name via command line
Replies: 2
Views: 2376

Re: How to pass Data Source name via command line

I believe you could do this with run configuration parameter. http://www.ranorex.com/support/user-guide-20/lesson-4-ranorex-test-suite.html#c3019 Basically just have 1 test step that initializes english and another one which initializes french and link them to different run configurations. You can s...
by Martin
Thu Jan 19, 2017 1:28 pm
Forum: General Questions
Topic: Search timeout update for the whole solution
Replies: 7
Views: 1871

Re: Search timeout update for the whole solution

Eventually, you can use Exists() method with wait timeout of your choice, so you don't have to use two repo elements or mess up with default search timeouts. But yes, this solution would require using User Code action/code modules. That's true. I actually used the repo timeout logic i talked about ...
by Martin
Thu Jan 19, 2017 11:59 am
Forum: General Questions
Topic: Search timeout update for the whole solution
Replies: 7
Views: 1871

Re: Search timeout update for the whole solution

Just 1 more option which I use for elements that I need quick timeout for. Timeout for repo elements comes from repo item properties Timeout parameter. I have quite many scnearios where a specific element exists in which there might be multiple results depending on the shown child repo element. For ...
by Martin
Thu Jan 19, 2017 11:33 am
Forum: General Questions
Topic: Validation: Match the value of regular expression
Replies: 6
Views: 4629

Re: Validation: Match the value of regular expression

Hey

Could you please give more information regarding your issue.

Code sample, repo element and a snapshot (not a screenshot) of the problematic item would be great.

Martin
by Martin
Tue Jan 17, 2017 11:12 am
Forum: Automation Tools
Topic: Reorder recordings dynamicaly in Ranorex Test Suite
Replies: 4
Views: 1777

Re: Reorder recordings dynamicaly in Ranorex Test Suite

Yes, basically what you would need is to capsulate your testcases in such a way that they can be activated seperately. Then link them to run configurations (http://www.ranorex.com/support/user-guide-20/lesson-4-ranorex-test-suite.html#c3019) and then have the logic by results inserted into Jenkins l...
by Martin
Mon Jan 16, 2017 2:55 pm
Forum: Automation Tools
Topic: Reorder recordings dynamicaly in Ranorex Test Suite
Replies: 4
Views: 1777

Re: Reorder recordings dynamicaly in Ranorex Test Suite

This could also be covered with a CI tool such as Jenkins. Depending on the result various jobs could be launched. Jenkins is also free and has a lot of resources on the web to configure it correctly. It's quite easy to implement with Ranorex as well.