Search found 20 matches

by generalecaster
Tue Nov 26, 2013 3:39 pm
Forum: Automation API
Topic: How to Customize a PopUpWatcher?
Replies: 4
Views: 2674

Re: How to Customize a PopUpWatcher?

Hi Swisside,

meanwhile, trying some solutions, I've found one like yours.
I've tracked this:

Code: Select all

/form[@title~'Popup Title']/text[@text='Text One']/..
... and it works! :D

Thanx a lot
Max
by generalecaster
Tue Nov 26, 2013 11:11 am
Forum: Automation API
Topic: How to Customize a PopUpWatcher?
Replies: 4
Views: 2674

Re: How to Customize a PopUpWatcher?

Hi Markus, first of all, I wanna thank you for support, then I have an other question: may I select the popup where PopupWatcher will work on? I know my english isn't very clear, so I try to make an example: I have 2 kind of popup that can appare in a web page. The first popup got a "Text one" as te...
by generalecaster
Mon Nov 04, 2013 10:04 am
Forum: Automation Tools
Topic: Is it possible to export Ranorex Test Suite Tree
Replies: 4
Views: 2308

Re: Is it possible to export Ranorex Test Suite Tree

ok, I was hoping there was a tool doing it ...

thanx
by generalecaster
Mon Oct 28, 2013 11:07 am
Forum: Automation Tools
Topic: Is it possible to export Ranorex Test Suite Tree
Replies: 4
Views: 2308

Is it possible to export Ranorex Test Suite Tree

Hi all,

I need to export my test suite tree in an external document (ms word, pdf, etc.), is it possible? How I can do it?

thanx all
Max
by generalecaster
Fri Aug 09, 2013 9:42 am
Forum: Automation API
Topic: Import an Utility class in every Solution
Replies: 4
Views: 2128

Re: Import an Utility class in every Solution

Ok, to import a Code module is simple

right click on solution name, Add / Existing Item ... , select code module, when Ranorex ask if copy or link press on link, in this way code is always aligned in all my test.

Can someone tell me if I can link modules too?!?

thanx
Max
by generalecaster
Thu Aug 08, 2013 4:09 pm
Forum: Automation API
Topic: How to close all windows
Replies: 5
Views: 4222

Re: How to close all windows

wow ... it seems to be better ...

I'll try then I'll tell you

Thanx
Max
by generalecaster
Thu Aug 08, 2013 3:38 pm
Forum: Automation API
Topic: How to Customize a PopUpWatcher?
Replies: 4
Views: 2674

How to Customize a PopUpWatcher?

Hi all, I need to customize a PopUpWatcher. I've alredy used it to close popups by pressing OK button. Now I have to do a different thing. I need to execute a customized method when a specified popup appares. Is there a way to do it? For example I need to convert this: myPopupWatcher.WatchAndClick(r...
by generalecaster
Thu Aug 08, 2013 2:57 pm
Forum: Automation API
Topic: Import an Utility class in every Solution
Replies: 4
Views: 2128

Re: Import an Utility class in every Solution

You did understand correctly, but in the while I've solved it! :D :D :D

Thanx
Max
by generalecaster
Thu Aug 08, 2013 2:55 pm
Forum: Object Identification and Technologies
Topic: On change select troubles
Replies: 4
Views: 1876

Re: On change select troubles

Hi,

we have a lot of select box that must execute code when their value changes.
The only thing I'mtrying to do is activate the onChange event on them.

Now I've fixed the problem setting the previous element in the list and then making a KeySequence ({Down}) on my select box.

Thanx for answer
Max
by generalecaster
Mon Aug 05, 2013 2:09 pm
Forum: Object Identification and Technologies
Topic: On change select troubles
Replies: 4
Views: 1876

Re: On change select troubles

Ok, I'm trying several ways to solve my problem, but without success ... a simple question: I have this code: SelectTag select = (SelectTag)tendina; OptionTag item = (OptionTag)elementoInLista; where select is my select box and item the option tag I need to select. May I retrive a list of OptionTag ...
by generalecaster
Mon Aug 05, 2013 12:11 pm
Forum: Automation API
Topic: Import an Utility class in every Solution
Replies: 4
Views: 2128

Import an Utility class in every Solution

Hi all,

I wonder if I can create a central repository with some Utiliti classes and import them in all of my test solutions.
I'm using Ranorex 4.0.4.

Thanx
Max
by generalecaster
Mon Aug 05, 2013 11:05 am
Forum: Object Identification and Technologies
Topic: On change select troubles
Replies: 4
Views: 1876

On change select troubles

Hi all, I'm having some troubles with select box. First, I'm using Ranorex ver. 4.0.4. I need to select an option in my select, and I'm using Set Value/Tag Value that works fine. The problem is that browsers (I'm working on a multi-browser application) can't run the "on change" associated code. In t...
by generalecaster
Fri Jul 26, 2013 1:24 pm
Forum: Automation Tools
Topic: Problems with Embedded Repository
Replies: 1
Views: 1773

Problems with Embedded Repository

Hi all, I'm having problems with Embedded Repository. First i'm using Ranorex ver. 4.0.4. When I switch the repository of a recorded module to its embedded one and I click on Cleanup, Ranorex clears all unused items contained in that module, but if I want to back to global repository, I lose referen...
by generalecaster
Wed Jul 24, 2013 10:59 am
Forum: Automation API
Topic: How to close all windows
Replies: 5
Views: 4222

Re: How to close all windows

ok, now I have this method in my test: private void closeAllWindows() { System.Diagnostics.Process[] process = System.Diagnostics.Process.GetProcessesByName(browser); for (int i=0; i<process.Length; i++) { try { System.Diagnostics.Process p = (System.Diagnostics.Process)process.GetValue(i); p.Kill()...