Search found 10 matches

by bbv_philippdolder
Thu Jul 15, 2010 1:08 pm
Forum: How To …
Topic: How to integrate Ranorex with CruiseControl
Replies: 29
Views: 13414

Re: How to integrate Ranorex with CruiseControl

Hi Peter, When I run my Ranorex Tests using nUnit-console from within a cmd scripts that calls nant-target to run the tests, everything works as expected. (As I was using the info from the referenced blog post already) But when NAnt is triggered from the Continuous Integration server it does not wor...
by bbv_philippdolder
Thu Jul 15, 2010 11:59 am
Forum: How To …
Topic: How to integrate Ranorex with CruiseControl
Replies: 29
Views: 13414

Re: How to integrate Ranorex with CruiseControl

Hello all I'm trying to run my Ranorex Tests using NUnit-Console runner from out of our Continuous Integration environment which runs as service with Interactive Desktop enabled. But Ranorex cannot find the UI Elements and times out. Any idea how I can run the ranorex tests as NUnit tests? Thanks in...
by bbv_philippdolder
Mon Jan 25, 2010 7:16 am
Forum: Automation API
Topic: Strange RanorexPath expression error
Replies: 7
Views: 2612

Re: Strange RanorexPath expression error

I found out the Problem: I added the "RequiresSTA" attribute to my NUnit Fixture but ReSharper was not applying it correctly when I ran the tests from within Visual Studio. After using the NUnit UI to run the tests everything is working fine and I can wait for the button. I think I was misleaded to ...
by bbv_philippdolder
Wed Jan 20, 2010 6:21 pm
Forum: Automation API
Topic: Strange RanorexPath expression error
Replies: 7
Views: 2612

Re: Strange RanorexPath expression error

When I spy the disabled button after loading my repository in the Ranorex Spy the button gets highlighted as expected. But when I execute it in my code with the generated repository code it can't be found, not even if the button is in the same state (disabled) as when spying with the Spy. Because th...
by bbv_philippdolder
Wed Jan 20, 2010 10:51 am
Forum: Automation API
Topic: Strange RanorexPath expression error
Replies: 7
Views: 2612

Re: Strange RanorexPath expression error

I'm using latest and greatest Ranorex 2.2.1. Furthermore I'm using NUnit 2.5.3 with ReSharper to run the tests during development, I've also set the RequiresSTA attribute on my test fixture. I attached the 2 source files in the zip file. PcrProcessing.cs is the class containing the WaitForCompletion...
by bbv_philippdolder
Wed Jan 20, 2010 7:49 am
Forum: Automation API
Topic: Strange RanorexPath expression error
Replies: 7
Views: 2612

Strange RanorexPath expression error

Hello I have the following problem: I have a screen where I want to wait for the 'Close' button to become active before going on with my test scenario. I use the following code for this: public bool WaitForCompletion(int timeoutSeconds) { const int WaitTime = 10; int timePassed = 0; while (timePasse...
by bbv_philippdolder
Wed Jan 13, 2010 1:34 pm
Forum: Automation API
Topic: Problem with DevExpress TextBox
Replies: 4
Views: 4804

Re: Problem with DevExpress TextBox

Hello Christian

There is no Control class in Ranorex 2.2.1 (or I can't find it). And I cannot cast it to Text obviously.
Any hints?

Thanks Philipp
by bbv_philippdolder
Thu Nov 26, 2009 4:15 pm
Forum: General Questions
Topic: Run Ranorex Test without User-Interface Windows Context
Replies: 1
Views: 2074

Run Ranorex Test without User-Interface Windows Context

Hello I'm currently evaluationg Ranorex extensively. In our environment we have one Continuous Integration Server and one testing environment where our software is tested automatically (using Ranorex in the future). This machine is running on a virtualised VMWare ESX Server and therefore there are n...
by bbv_philippdolder
Thu Nov 26, 2009 9:05 am
Forum: Automation API
Topic: Problem with DevExpress TextBox
Replies: 4
Views: 4804

Re: Problem with DevExpress TextBox

What I found out so far is that when I call Focus() the text edit gets focus inside the application to test, but the main focus (active window) is on another application that is a simulator which is required to be started before entering the information. How do I assure that the application under te...
by bbv_philippdolder
Thu Nov 26, 2009 8:55 am
Forum: Automation API
Topic: Problem with DevExpress TextBox
Replies: 4
Views: 4804

Problem with DevExpress TextBox

Hello I'm having troubles entering text into DevExpress TextBoxes (using DevExpress 7.3.10): I tried the following: 1. using KitId as a Ranorex.Text type: Repository.Instance.Editor.Information.KitId.Focus(); Repository.Instance.Editor.Information.KitId.TextValue = lysisKitId; Then I get the followi...