Search found 12 matches

by kiran.pol
Thu Mar 10, 2011 7:01 am
Forum: Object Identification and Technologies
Topic: Telerik Controls Identification
Replies: 1
Views: 2664

Telerik Controls Identification

Hi I am using Ranorex V2.1 and it was working super. But the application we are using is going through changes and they are using something called “Telerik Controls” and these controls are not identified by current version of Ranorex that we have. Dose latest version of Ranorex support for Telerik o...
by kiran.pol
Mon Jun 07, 2010 6:52 am
Forum: General Questions
Topic: Getting count of selecttag in a webpage
Replies: 1
Views: 1864

Getting count of selecttag in a webpage

Hi,

I am trying to get the count of all selecttag in a webpage and i am using the below code .. but the count returns '0' even though there are selecttag in the webpage

Ranorex.WebDocument We1 = "/dom[@PageUrl~'^http://xyz/abc/']";
Console.WriteLine(We1.Find("./select").count);

Thanks
kiran pol
by kiran.pol
Thu Jun 03, 2010 10:21 am
Forum: General Questions
Topic: Not able to select an item from dropdown in web
Replies: 3
Views: 2207

Re: Not able to select an item from dropdown in web

Hi

it is working fine with the below code ...

ListItem item = "/container[@caption='selectbox']/listitem[@accessiblename='" + itemtext + "']";

not sure why it is not working with innertext .....

Thanks
Kiran Pol
by kiran.pol
Wed Jun 02, 2010 2:53 pm
Forum: General Questions
Topic: Not able to select an item from dropdown in web
Replies: 3
Views: 2207

Not able to select an item from dropdown in web

Hi i have tried this code to select a value from dropdown but it is not working for me WebDocument webdoc = "/dom[@caption='pagecaption']"; SelectTag cngcntry = webdoc.FindSingle(".//select[@id='idvalue']"); cngcntry.Click(); Delay.Seconds(2); ListItem item = "/container[@caption='selectbox']/listit...
by kiran.pol
Thu May 27, 2010 2:46 pm
Forum: Automation API
Topic: How to get all the text elements from container
Replies: 5
Views: 4996

Re: How to get all the text elements from container

Thanks a lot ... it works perfect..

I will go through the links you have provided to get better insight of things to use..

Thanks
Thanks
Kiran Pol
by kiran.pol
Thu May 27, 2010 1:51 pm
Forum: Automation API
Topic: How to get all the text elements from container
Replies: 5
Views: 4996

Re: How to get all the text elements from container

Hi ,, Thanks the code works fine but i have on more porblem .. I actually want to get the AccessiableName or AccessiableDescription property of the text element because the text associated with the child elements is empty .. i tried using Console.WriteLine(txt.AccessiableDescription); but i suppose ...
by kiran.pol
Thu May 27, 2010 8:19 am
Forum: Automation API
Topic: How to get all the text elements from container
Replies: 5
Views: 4996

How to get all the text elements from container

Hi, There is a control of type container and it has sub elements of type text. i want to read the text value of each text in the container. How can i do this. i tried using the following code but dose not work for me Ranorex.Container IV_Add = <XPath of Container> Element[] invadd=IV_Add.FindChildre...
by kiran.pol
Wed Apr 28, 2010 7:40 am
Forum: General Questions
Topic: Unable to perform click on table cell
Replies: 1
Views: 2398

Unable to perform click on table cell

Hi When i try to spy a cell in a table only the entire table row is hilighted and the cell is not highlited. In the Ranorex Spy Element Browser the row element is displayed as collapsed and when expanded i am able to see each cell properties with their xpaths. Now when i try to use this xpath to ide...
by kiran.pol
Tue Oct 20, 2009 10:35 am
Forum: General Questions
Topic: Not Able To install License in another system
Replies: 2
Views: 2138

Re: Not Able To install License in another system

Hi Christian

I had send the request and my license was reactivated. Thanks :)



Kiran Pol
by kiran.pol
Tue Oct 20, 2009 9:27 am
Forum: General Questions
Topic: Not Able To install License in another system
Replies: 2
Views: 2138

Not Able To install License in another system

Hi I had installed Premium license in one system. Later we realized that it would be better if we had it installed in another System and so I uninstalled license from that system by goint to Ranorex licensing and clicking on "Uninstall License" button. Now when i am trying to install the same licens...
by kiran.pol
Wed Oct 14, 2009 7:42 am
Forum: Automation Tools
Topic: Not able to identify TabPage using regular expression
Replies: 3
Views: 2609

Re: Not able to identify TabPage using regular expression

Thanks a lot. I definitely missed to use "~"

Now it is working fine for me :)
by kiran.pol
Tue Oct 13, 2009 1:07 pm
Forum: Automation Tools
Topic: Not able to identify TabPage using regular expression
Replies: 3
Views: 2609

Not able to identify TabPage using regular expression

I have a tab page something like Ranorex.TabPage TB_Edit_Customer = "/form[@controlname='MainForm']/container[@controlname='panelTabControlHolder']/*/*/tabpage[@accessiblename='Edit Customer [10378456]']";. The value in the brackets keep changing.Next time it might be something like - Ranorex.TabPag...