Search found 14 matches

by CarlaNeves
Mon Apr 20, 2009 10:07 am
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hi,

With the InvokeRemotely method I am able to get the values of the properties I need.

Thank you!!

Carla Neves
by CarlaNeves
Tue Apr 14, 2009 1:04 pm
Forum: General Questions
Topic: Compilation Error
Replies: 3
Views: 5635

Isn't there any way to run a part of the test without rebuilding the project?

Thanks,
Carla Neves
by CarlaNeves
Tue Apr 14, 2009 12:23 pm
Forum: General Questions
Topic: Compilation Error
Replies: 3
Views: 5635

Compilation Error

Hi there, When I build my project I get this error: Unable to copy file "obj\Debug\Trend.exe" to "bin\Debug\Trend.exe". The process cannot access the file 'bin\Debug\Trend.exe' because it is being used by another process. (MSB3021) Only when I close my application and start again I'm able to build a...
by CarlaNeves
Thu Apr 09, 2009 10:38 am
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hi, I'm having a problem, when I run the next piece of code: Ranorex.Control elementChart1 = "/form[@controlname='FRM_Main']/container/element/*/*/container[@caption='' and @processname='MyApplication' and @controltypename='WindowDockingArea' and @class='WindowsForms10.Window.8.app.0.bf7771' and @in...
by CarlaNeves
Wed Apr 08, 2009 1:10 pm
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hi,

You were absolutely right about that, the element I had was just the chart when I should had instead the element above.

It works great!!

Thank you very much for your time and explanations!!

Carla Neves
by CarlaNeves
Tue Apr 07, 2009 6:02 pm
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hi, again... After several attempts, one follows, I haven't had any luck with the results, I always get a similar error. Ranorex.Control elementChart1 = "/form[@controlname='FRM_Main']/container/element/*/*/container[@caption='' and @processname='MyApplication' and @controltypename='WindowDockingAre...
by CarlaNeves
Tue Apr 07, 2009 1:51 pm
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hi, I tried to do as you said: Ranorex.Control elementChart1 = "/form[@controlname='FRM_Main']/container/element/*/*/container[@caption='' and @processname='MyApplication' and @controltypename='WindowDockingArea' and @class='WindowsForms10.Window.8.app.0.bf7771' and @instance='1']/container[@caption...
by CarlaNeves
Mon Apr 06, 2009 2:29 pm
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Hello, For those examples and for a few other properties such as width, height or font, the Ranorex is able to get their values, but for many others, for example Gallery I get the following error: Ranorex.ActionFailedException: Action 'getpropertyvalue' failed on element '{Unknown:bq}'. ---> System....
by CarlaNeves
Mon Mar 23, 2009 12:27 pm
Forum: General Questions
Topic: Select a list item from a combobox
Replies: 10
Views: 9629

Hi! The combobox is a Infragistics.Win.UltraWinEditors.UltraComboEditor. I did a test with a System.Windows.Forms.ComboBox and works fine with the following code: Ranorex.ComboBox ComboBox1 = "/form[@controlname='Form1']/combobox"; ComboBox1.Element.SetAttributeValue("Text", "Item 3"); Thank you, Ca...
by CarlaNeves
Wed Mar 18, 2009 5:19 pm
Forum: General Questions
Topic: Select a list item from a combobox
Replies: 10
Views: 9629

Hello,

The output from listItem.ScreenRectangle is {X=0,Y=0,Width=0,Height=0}.
The ClientRectangle is only available through the property Element.
The output from listItem.Element.ClientRectangle is {X=0,Y=0,Width=0,Height=0}.



Thank you,
Carla Neves
by CarlaNeves
Wed Mar 18, 2009 2:07 pm
Forum: General Questions
Topic: Select a list item from a combobox
Replies: 10
Views: 9629

Hi there,

Unfortunately this occur every time I execute the test.

Thank you,
Carla Neves
by CarlaNeves
Tue Mar 17, 2009 6:11 pm
Forum: General Questions
Topic: Select a list item from a combobox
Replies: 10
Views: 9629

The item is never clicked, and the mouse cursor jumps into the top left corner of the screen.


Thanks in advance,
Carla Neves
by CarlaNeves
Tue Mar 17, 2009 12:22 pm
Forum: General Questions
Topic: Select a list item from a combobox
Replies: 10
Views: 9629

Select a list item from a combobox

Hi there, I can't select a list item from a regular .net combobox. Here's the code I used: Ranorex.ComboBox ComboBox = "/form[@controlname='FRM_Main']/container/element/*/*/container[@caption='' and @processname='MyApplication' and @controltypename='WindowDockingArea' and @class='WindowsForms10.Wind...
by CarlaNeves
Thu Feb 26, 2009 2:21 pm
Forum: General Questions
Topic: Verify object properties when object is a graphic ChatFx
Replies: 11
Views: 4392

Verify object properties when object is a graphic ChatFx

I'm having a problem to access the properties of an object. The object is a ChartFx. I can only access the information of the control and I need to verify the colors of the background of the graphic.
Can someone help?