Search found 5 matches

by annias411
Fri Sep 07, 2012 7:11 pm
Forum: General Questions
Topic: RQM interface
Replies: 1
Views: 2228

RQM interface

Has anyone had any experience interfacing Ranorex with Rational Quality Manager?

Before I can justify purchasing Ranorex, I need to prove I can push test results into RQM.

Any help would be great thanks!
by annias411
Fri Aug 17, 2012 8:46 pm
Forum: General Questions
Topic: Unique application help needed
Replies: 7
Views: 1722

Re: Unique application help needed

Figured it out thanks... (Again this is allowing me to find dynamic input controls created by javascript, which have changing IDs.) Maybe someone else will find this of value. var label = webDoc.FindSingle("/dom[@domain='MyDomain.net']//label[@innertext='"+ controlName+"']"); The controls I'm trying...
by annias411
Thu Aug 16, 2012 8:36 pm
Forum: General Questions
Topic: Unique application help needed
Replies: 7
Views: 1722

Re: Unique application help needed

Thanks Ciege for your help, I'm almost there. I'm new to XPath, so please forgive my ignorance. This works, it finds the checkbox I'm looking for. var cb = webDoc.Find("/dom[@domain=myDomain.net']//div[#'x-auto-119']/label[@innertext='mycheckbox']"); However, I need to search all the "x-auto-n" poss...
by annias411
Wed Aug 15, 2012 8:58 pm
Forum: General Questions
Topic: Unique application help needed
Replies: 7
Views: 1722

Re: Unique application help needed

Is there any sample code on how to loop through all the labels?
by annias411
Fri Aug 10, 2012 4:13 pm
Forum: General Questions
Topic: Unique application help needed
Replies: 7
Views: 1722

Unique application help needed

I'm evaluating Ranorex for purchase and I need a little help with using your product with our application. We use Google web tools as a development framework and the objects are dynamic. So a checkbox ID'd as 'x-auto-118' on one iteration might be 'x-auto-204' on the next. Untitled.jpg Putting the c...