Search found 1336 matches

by Ciege
Fri Mar 13, 2015 4:23 pm
Forum: Object Identification and Technologies
Topic: SlickGrid? (or dynamic content loading)
Replies: 5
Views: 3608

Re: SlickGrid? (or dynamic content loading)

So this is how I solved it... I had to find the "viewport" of the grid and then the "canvas" of the grid. With those elements of the grid you can the get the viewPortHeight, canvasHeight and canvasY values. If canvasHeight - canvasY - viewPortHeight == 0 then you are at the end of the grid. After ea...
by Ciege
Thu Mar 12, 2015 11:18 pm
Forum: General Questions
Topic: Technology Limitation Warning Message
Replies: 9
Views: 4420

Re: Technology Limitation Warning Message

There it is! That's the answer...
I had Spy open. When I closed Spy I did not receive the technology limitation message.
Thanks for the "(not-so-)short explanation"! It was quite useful!
by Ciege
Thu Mar 12, 2015 4:00 pm
Forum: General Questions
Topic: Technology Limitation Warning Message
Replies: 9
Views: 4420

Re: Technology Limitation Warning Message

Great, thanks Markus...

I've moved on to a new company and am in the process of demoing some UI automation for them using Ranorex. So having the warning message is no big deal right now, I just couldnt explain it.
by Ciege
Thu Mar 12, 2015 3:52 pm
Forum: Automation Tools
Topic: Visual Studio IDE for running Tests
Replies: 4
Views: 2255

Re: Visual Studio IDE for running Tests

I (and a couple others on here) do all of my development in VS. I do not use the repository or any of the visual niceties that the Ranorex IDE provides. I find that writing the code myself via the Ranorex API to be very easy and powerful. As for implementation, you only need to make a reference to t...
by Ciege
Thu Mar 12, 2015 3:46 pm
Forum: General Questions
Topic: Technology Limitation Warning Message
Replies: 9
Views: 4420

Re: Technology Limitation Warning Message

Yeah, the method I use does check for any DOM object and then verifies it based on an attribute. Used it for years with no issues. As a test I changed the code to set the WebDocument object directly, but still get the technology limitation warning. Ranorex.WebDocument MyDOM = @"/dom[@caption='FOO']";
by Ciege
Wed Mar 11, 2015 4:26 pm
Forum: General Questions
Topic: (Click event is working some time and some time not for conr
Replies: 7
Views: 3059

Re: (Click event is working some time and some time not for conr

Sounds like a timing issue. May I suggest something to try... 1) Don't use hard coded wait times (delays). 2) Since you mentioned this is a web app, check the readystate of the DOM object and wait until the DOM readystate becomes complete before attempting to click on the element. It is possible you...
by Ciege
Wed Mar 11, 2015 4:21 pm
Forum: General Questions
Topic: Tool for Distributed Execution of Tests?
Replies: 3
Views: 1584

Re: Tool for Distributed Execution of Tests?

You can also look into using PSEXEC as the method of pushing your automated test to a remote machine and running it. I've done similar in the past (not in CI). I wrote a small app that would allow a single user the ability to check the tests that they wanted to run, compile the test(s) to an EXE, di...
by Ciege
Wed Mar 11, 2015 1:41 am
Forum: General Questions
Topic: Technology Limitation Warning Message
Replies: 9
Views: 4420

Technology Limitation Warning Message

Hi all... Using Ranorex version: 5.3.0.22324 and IE 11 and OS version: Windows 7 Service Pack 1 64bit I get the following technology limitation warning and for the life of me I cannot figure out how to resolve it... The control seems to be a Windows Forms control, but was not recognized as such, pos...
by Ciege
Thu Feb 05, 2015 10:31 pm
Forum: General Questions
Topic: How to get coordinates for an object ?
Replies: 9
Views: 5295

Re: How to get coordinates for an object ?

It seems to me you time would be best spent with your dev team to determine what the values mean, why and when they change so that you can accurately code for the different values of the radio buttons. Blindly coding a bunch of if statements is not a reliable solution. What if you didn't code for th...
by Ciege
Mon Feb 02, 2015 6:55 pm
Forum: Object Identification and Technologies
Topic: Find only element of default tab
Replies: 10
Views: 3158

Re: Find only element of default tab

PS helpdesk of Ranorex wrote me. They said that they try to fix this issue. "The release of this new Ranorex Version will be in the next week" I hope they can fix it! They are pretty good about these things, so I too hope they get it for you... Regardless, I had a look at your snapshot with the Ins...
by Ciege
Wed Jan 28, 2015 5:55 pm
Forum: Automation API
Topic: Disable reports entirely
Replies: 6
Views: 3511

Re: Disable reports entirely

Cool! You're welcome...
by Ciege
Wed Jan 28, 2015 4:23 pm
Forum: Object Identification and Technologies
Topic: Find only element of default tab
Replies: 10
Views: 3158

Re: Find only element of default tab

So you are showing us a screenshot of Word. Is the XSL function group your own Add In? Can you please make a RanorexSpy snapshot of the AUT with the Home tab selected, then one with the Insert tab selected? (Since you don't show in your screenshots which button has the AutomationID of ValueId. Can y...
by Ciege
Tue Jan 27, 2015 6:34 pm
Forum: Automation API
Topic: Disable reports entirely
Replies: 6
Views: 3511

Re: Disable reports entirely

You should be able to set the report level to "None" to disable reporting.

Code: Select all

Ranorex.Core.Reporting.TestReport.Setup(ReportLevel.None, null, false);
by Ciege
Tue Jan 27, 2015 5:56 pm
Forum: Object Identification and Technologies
Topic: Find only element of default tab
Replies: 10
Views: 3158

Re: Find only element of default tab

It *could* also be that the element with the same AutomationID lives on multiple tabs (the XPath is different because of where it lives, but the element AutomationID is identical). Therefore when the AUT is first started and the first Tab is displayed the element exists on that tab. When the new tab...
by Ciege
Tue Jan 27, 2015 5:26 pm
Forum: Object Identification and Technologies
Topic: Combo box Dropdown value selection issue
Replies: 1
Views: 2180

Re: Combo box Dropdown value selection issue

Does Ranorex identify the checkbox or just a ListItem? Since Ranorex probably just identifies a ListItem you can click the ListItem at Location.CenterLeft, which *should* click the checkbox. You could also code your own solution to check for the length of the LIstItem, determine the approximate numb...