Search found 14 matches

by lasombra
Wed Nov 06, 2013 7:30 am
Forum: Object Identification and Technologies
Topic: Ranorex.Text identified but not clicked
Replies: 3
Views: 2246

Ranorex.Text identified but not clicked

I have the following table structure withing a Silverlight application Table 'objTable' +-Row 'ColumnHeadersPresenter' +-Element 'RowsPreseneter' +-Element 'Row1' +-Element 'Col1' +-Text +-Element 'Col2' +-Text +-Element 'Row2' +-Element 'Col1' +-Text +-Element 'Col2' +-Text I try to set the value f...
by lasombra
Mon Nov 04, 2013 8:59 am
Forum: Automation Tools
Topic: [Solved] Module "could not be found"
Replies: 4
Views: 3599

Re: Module "could not be found"

Ok, we've found the problem. The Test suites project were set to Target Framework "3.5" but had to be "4.0". After fixing this, the execution of the test cases works as expected
by lasombra
Thu Oct 31, 2013 3:39 pm
Forum: Automation Tools
Topic: [Solved] Module "could not be found"
Replies: 4
Views: 3599

Re: Module "could not be found"

How do you integrate the recordings in the other test suites? I tried different things Copy a complete test case Adding a new test cases and dragging a module into the TC Can you please try to delete the recording and add it again? Already tried, same issue Which version of Ranroex are you using? 4...
by lasombra
Thu Oct 31, 2013 12:25 pm
Forum: Automation Tools
Topic: [Solved] Module "could not be found"
Replies: 4
Views: 3599

Re: Module "could not be found"

Nobody?
by lasombra
Tue Oct 29, 2013 2:28 pm
Forum: Automation Tools
Topic: [Solved] Module "could not be found"
Replies: 4
Views: 3599

[Solved] Module "could not be found"

I have a Ranorex solution which consist of several projects (e.g. LoginScreen, MainApplication, ..). Each projects consists of modules (e.g. LoginScreen consist of LoginModule, LogoutModule). Additionally I have a main test suite (TSMain) and some other test suites (TS1, TS2) RanorexSolution +-Login...
by lasombra
Tue Mar 18, 2008 3:56 pm
Forum: Automation API
Topic: Strange behavior of DoDefaultAction() and Mouse.ClickElemen
Replies: 1
Views: 3109

Strange behavior of DoDefaultAction() and Mouse.ClickElemen

As mentioned in my post http://www.ranorex.com/forum/open-modaldialog-blocks-testclient-t354.html I have a strange behavior, that an element found, has the wrong coordinates, such that Mouse.ClickElement() does not work. Well I have a loop, that is looking for an element and press a menu button. If ...
by lasombra
Tue Mar 11, 2008 3:24 pm
Forum: Automation API
Topic: Ranorex 1.1.0 don't find ChildElement / FindChild() slow
Replies: 1
Views: 3129

Ranorex 1.1.0 don't find ChildElement / FindChild() slow

I have a test application which works as expected with Ranorex 1.2 For some reasons I went back to Ranorex 1.1.0. Now the test application don't work more. The problem is, that the function FindChild() don't find the menu item any more (while with Ranorex 1.2 the item found without problems). Ranore...
by lasombra
Mon Mar 10, 2008 3:57 pm
Forum: Automation API
Topic: Dialog and ModalDialog
Replies: 6
Views: 4548

Thanks Alex, this is what I am looking for, unfortunately Ranorex doesn't provide a FindForm(), although mentioned in the documentation. Assembly: RanorexNet (Module: RanorexNet) Version: 1.2.0.0 DevEnv: Visual C# Express 2008 The ObjectBorwser of the Visual Express only provides me only the methods...
by lasombra
Mon Mar 10, 2008 1:28 pm
Forum: Automation API
Topic: Dialog and ModalDialog
Replies: 6
Views: 4548

If dialogs are top level windows, why UISpy shows me the dialog as a child? Well this is another thing... But still I have a problem with the dialog. I get the dialog by classname, and is the only dialog. foreach (Ranorex.Form topform in Ranorex.Application.Forms) { if (topform.ClassName.Equals("#32...
by lasombra
Fri Mar 07, 2008 8:52 pm
Forum: Automation API
Topic: Dialog and ModalDialog
Replies: 6
Views: 4548

In the end I got it: First RTFM ;-) A Dialog is a Ranorex.Form thus I can search by classname on the Ranorex.Application:

Code: Select all

Ranorex.Application.FindFormClassName("#32770");
by lasombra
Fri Mar 07, 2008 8:30 pm
Forum: Automation API
Topic: Dialog and ModalDialog
Replies: 6
Views: 4548

Dialog and ModalDialog

I have a Ranorex test client, which opens on the application-to-test a modal dialog "Standard User" where I enter some user information like username and password. If all information are entered, I click on "OK". Well if the user exists, a dialog "Standard User" appears, where I either must to click...
by lasombra
Fri Mar 07, 2008 4:31 pm
Forum: Automation API
Topic: Open ModalDialog blocks TestClient
Replies: 4
Views: 4114

Thanks Alex. In this form (threads) I could achieve what I wanted.
by lasombra
Tue Mar 04, 2008 7:43 pm
Forum: Automation API
Topic: Open ModalDialog blocks TestClient
Replies: 4
Views: 4114

Thanks for your answer. Unfortunately I have a strange problem with the Mouse.ClickElement , for which reason I'd like the DoDefaultAction() . Well, the problem is the following: I have a loop (can be a sequence too, the problem appears anyway) to create various users: for (int i = 0; i < 5; i++) { ...
by lasombra
Tue Mar 04, 2008 1:54 pm
Forum: Automation API
Topic: Open ModalDialog blocks TestClient
Replies: 4
Views: 4114

Open ModalDialog blocks TestClient

My client application opens a new modal dialog to create a new user: Ranorex.Element elemMenuItem = mainForm.Element.FindChild(Ranorex.Role.MenuItem, "New User"); elemMenuItem.DoDefaultAction(); Ranorex.Form myForm2 = Ranorex.Application.FindFormTitle("Standard User"); While the dialog is open, the ...