Search found 12 matches

by KurtZ
Fri Jun 06, 2014 3:41 pm
Forum: Object Identification and Technologies
Topic: Unable to see grid in silverlight
Replies: 3
Views: 2069

Re: Unable to see grid in silverlight

I do not see these items using UISpy and will circle back with the developer.
Thanks
by KurtZ
Thu Jun 05, 2014 3:53 pm
Forum: Object Identification and Technologies
Topic: Unable to see grid in silverlight
Replies: 3
Views: 2069

Re: Unable to see grid in silverlight

I am also attaching a screen shot of Silverlight Spy showing the Grid'Question' object being referred to.
Thanks
by KurtZ
Wed Jun 04, 2014 8:10 pm
Forum: Object Identification and Technologies
Topic: Unable to see grid in silverlight
Replies: 3
Views: 2069

Unable to see grid in silverlight

I have an object called container'SectionExpander'. Per the developer, under this container there is/are grid(s) called 'Question' which should enclose the children items. Looking at the attached snaphot, I am expecting three instances of object'Question' directly below container'SectionExpander' wh...
by KurtZ
Thu May 08, 2014 1:52 pm
Forum: Automation API
Topic: How to Select all options in a Select tag drop down
Replies: 7
Views: 5319

Re: How to Select all options in a Select tag drop down

That was krstcs with the arrow key solution by the way :wink: I am looking at your original solution, and it seems really convoluted. First off, I don't think you want to invoke the find inside the loop; essentially you're saying "for each option in the collection I find, find a collection of option...
by KurtZ
Fri May 02, 2014 8:32 pm
Forum: Automation API
Topic: Problems using 'following-sibling'
Replies: 5
Views: 6349

Re: Problems using 'following-sibling'

Hi Aracknid, I can reproduce the same thing you are showing with Div object in one of my webpages. The problem lies somewhere in the combination of the relative path, the hashtag, and the following-sibling::div. If you were to do any of these paths, following(preceding)-sibling should work like you ...
by KurtZ
Fri May 02, 2014 1:24 pm
Forum: Automation API
Topic: How to Select all options in a Select tag drop down
Replies: 7
Views: 5319

Re: How to Select all options in a Select tag drop down

D'oh! I didn't think about the list collapsing after you selected an item. You're original code was right then. Does your list have a scroll bar? Does it only select the visible list items before failing?
by KurtZ
Thu May 01, 2014 4:36 pm
Forum: Automation API
Topic: How to Select all options in a Select tag drop down
Replies: 7
Views: 5319

Re: How to Select all options in a Select tag drop down

Move expanding the list outside the loop. You are expanding, selecting an option, restarting the loop, then collapsing and trying to select the next option from a closed list. { Ranorex.SelectTag varSelect = repo.GroupcallMessengerRoot.SendMessage.Recipients.SendTo.dd_SendTo; varSelect.Click(Locatio...
by KurtZ
Tue Feb 04, 2014 8:15 pm
Forum: Automation Tools
Topic: Get property values from controls
Replies: 5
Views: 4856

Re: Get property values from controls

I think you are getting null because "Size" as you have highlighted in your screen print is just redisplaying the width and height properties. If you switch to the Overview tab, you will probably see the Size property is blank. You need to get the Width and Height directly as Robert shows in his scr...
by KurtZ
Tue Feb 04, 2014 7:31 pm
Forum: Automation Tools
Topic: Validate.NotExists Overloads Problem
Replies: 6
Views: 2452

Re: Validate.NotExists Overloads Problem

See this link -- http://www.ranorex.com/Documentation/Ranorex/html/Overload_Ranorex_Validate_NotExists.htm I'm just restating what krstcs has already said, just a little differently. Your original snippet matches the method NotExists(Element). When you specify additional arguments, it is now trying ...
by KurtZ
Fri Jul 19, 2013 4:41 pm
Forum: Object Identification and Technologies
Topic: Dynamically resetting repository items
Replies: 4
Views: 3454

Re: Dynamically resetting repository items

BasePath exists on the folder object itself, as opposed to the SelfInfo object, but this solved both issues.
Thanks Rano team, you all rock!
RepoPath.container_VariableTab.BasePath = "container["+i+"]";
by KurtZ
Wed Jul 17, 2013 12:32 pm
Forum: Object Identification and Technologies
Topic: Dynamically resetting repository items
Replies: 4
Views: 3454

Re: Dynamically resetting repository items

Thanks Bernhard. Unless I'm missing something, the problem with making the repo path variable as you have suggested means I have to maintain yet another column of data in my data sheet. This isn't a huge sticking point, but it requires additional manual interaction instead of having a snippet of cod...
by KurtZ
Fri Jul 12, 2013 3:06 pm
Forum: Object Identification and Technologies
Topic: Dynamically resetting repository items
Replies: 4
Views: 3454

Dynamically resetting repository items

Background: I have a multi-tab form used for performing searches. Each tab contains basically the same objects, with the only difference being the tab's index. I am creating rooted folders in my repository. Rather than create 5 folders containing the same 20 objects (100 total objects), I want to cr...