Search found 9 matches

by chstnq
Fri Nov 14, 2008 3:49 pm
Forum: Object Identification and Technologies
Topic: Failed to load document.
Replies: 7
Views: 3713

Thanks a lot.

regards,
Alex
by chstnq
Fri Nov 14, 2008 2:03 pm
Forum: Object Identification and Technologies
Topic: Failed to load document.
Replies: 7
Views: 3713

Hi,
I hope you can help me further with the following exception:

Ranorex.Web needs a single threaded apartment to work correctly. Please set the ApartmentState of the current thread to STA.

What does that mean?

Thanks for helping me out.

Regards
Alex
by chstnq
Thu Nov 13, 2008 9:04 am
Forum: Object Identification and Technologies
Topic: Failed to load document.
Replies: 7
Views: 3713

I have no idea why but now it seems to work.

Still, thanks for your help.

Alex
by chstnq
Mon Nov 10, 2008 2:59 pm
Forum: Object Identification and Technologies
Topic: Failed to load document.
Replies: 7
Views: 3713

Hi Christoph,
I'm using Windwos XP Professional and IE 6.0.

regards
Alex
by chstnq
Mon Nov 10, 2008 1:20 pm
Forum: Object Identification and Technologies
Topic: Failed to load document.
Replies: 7
Views: 3713

Failed to load document.

Hi,
When trying to run the provided Web Testing Automation Sample I get an Ranorex Exception with message "Failed to load document".
I updated the version 1.5.0 to 1.5.1 and still get the same exception.
I didn't change any codes on the example, so what am I doing wrong?

regards
Alex
by chstnq
Thu Oct 09, 2008 3:16 pm
Forum: Automation API
Topic: Controlname of a PushButton (or any other item) in a Toolbar
Replies: 1
Views: 2918

Controlname of a PushButton (or any other item) in a Toolbar

Hi,
I have a number of buttons in a Toolbar. To make sure that I select the right button to click I want to identify it by its controlname or controlId. With the RanorexSpy I only get the controlname and controlId of the Toolbar. Is there a way to get to the information I need?


regards
Alex
by chstnq
Mon Oct 06, 2008 2:53 pm
Forum: General Questions
Topic: Automation of an application written in java
Replies: 8
Views: 4851

Thanks for your answer. Is there already a planned release with supporting the Java SWING framework?

Regards,
Alex
by chstnq
Mon Oct 06, 2008 1:15 pm
Forum: General Questions
Topic: Automation of an application written in java
Replies: 8
Views: 4851

Automation of an application written in java

I'm trying to automate an application which is written in java. Unfortunately I cannot gain control of any objects in the application. I also tried to find out with the RanorexSpyPro but it shows no results.
Are Java applications not supported at all?

regards,
Alex
by chstnq
Tue May 20, 2008 8:20 am
Forum: Bug Reports
Topic: Element.ChildCount returns wrong number
Replies: 1
Views: 3134

Element.ChildCount returns wrong number

I want to find out the number of items on a list using the following code: .. int i = 0; control = form.FindControlId(31); control.Focus(); controlElement = control.Element; // Find List Element listElement = controlElement.FindChild(Role.List); if (listElement != null) { i = listElement.ChildCount;...