Search found 16 matches

by bewiss
Tue Jan 09, 2018 2:03 pm
Forum: Automation Tools
Topic: Path Editor
Replies: 3
Views: 1831

Re: Path Editor

If your element is represented by an unique id, why do you use SPY at all. Trim your xPath to only one element by using '//'
Creating an new item in your repository only takes a few seconds!
by bewiss
Thu Sep 03, 2015 12:51 pm
Forum: Bug Reports
Topic: save changed Arguments within Argument Editor doesn't work a
Replies: 3
Views: 1849

save changed Arguments within Argument Editor doesn't work a

Some Usercode expects several fields as argument. I can change any Variable within the Argument Editor but clicking 'ok' doesn't save the new value. (Screenshot fig1) (I'm getting the Usercode via inheritance: "public partial class RecordingXY:Codemodules.Cm_TableHandler") If I do some changes withi...
by bewiss
Mon Mar 23, 2015 6:26 pm
Forum: Bug Reports
Topic: [5.3.0] Spy Not Picking up AutomationID in WPF App
Replies: 6
Views: 2957

Re: [5.3.0] Spy Not Picking up AutomationID in WPF App

Thx Gh15ty, you made my day! :-)
by bewiss
Mon Mar 23, 2015 6:06 pm
Forum: Bug Reports
Topic: [5.3.0] Spy Not Picking up AutomationID in WPF App
Replies: 6
Views: 2957

Re: [5.3.0] Spy Not Picking up AutomationID in WPF App

I do have the same problem!!! Clicking within Spy into the UIA-tree always pops up an warning window ("please consider using wpf ...") Using "find", "findsingle", etc. in usercode doesn't work any more. I presume that RR is searching the hell out of two trees (WPF and UIA) Is ist possible to disable...
by bewiss
Mon Mar 23, 2015 1:09 pm
Forum: Bug Reports
Topic: 5.3.0 Two Item branches in Spy (WPF and UIA) causes problems
Replies: 1
Views: 2123

5.3.0 Two Item branches in Spy (WPF and UIA) causes problems

Since V5.3.0 Spy provides two /form-branches each model (WPF and UIA) - spying an object always jumps into the WPF branch even I do have serveral UIA elements. I have to click through all my elements in UIA tree if I want to get to a certain element - using "findSingle" or "find" in usercode slows d...
by bewiss
Sat Nov 22, 2014 4:42 pm
Forum: General Questions
Topic: Automation Microsoft Word 2013
Replies: 7
Views: 4350

Re: Automation Microsoft Word 2013

Hi Markus,

of course your example works. I was a little out of it :roll:
Thx
Bernd
by bewiss
Mon Nov 17, 2014 8:28 am
Forum: General Questions
Topic: Automation Microsoft Word 2013
Replies: 7
Views: 4350

Re: Automation Microsoft Word 2013

Hi Markus, thx for your example. I really appreciate your fast responce and your very helpfull replies :-) So, perhaps there was kind of a misleading description from my side. Reading from a stored .doc with office.interop wasn't the problem for me. I can do that. I thought of a way to get data from...
by bewiss
Tue Nov 11, 2014 2:46 pm
Forum: General Questions
Topic: Automation Microsoft Word 2013
Replies: 7
Views: 4350

Re: Automation Microsoft Word 2013

Hi Markus, I tried this one out but there is no way to intellisense a GetWordDocumentObject() out of my Word-Repo-Item. - I added the reference from GAC to the project and did the usual "using Microsoft.Office.Interop.Word" - my "document1" Repo-item is valid and holds the allocated Word instance. A...
by bewiss
Thu Nov 06, 2014 12:00 am
Forum: Object Identification and Technologies
Topic: How to access Advanced Properties of object
Replies: 5
Views: 4638

Re: How to access Advanced Properties of object

Did you try to get your attribute via usercode and the getAttributeValue method? 1. Create a Code- or Recording-module 2. drag and drop your repo-item into the modules usercode section 3. --> var yourItem = <yourRepoInstance><yourRepoItem> string yourValue = yourItem.getAttributeValue("Text").toStri...
by bewiss
Fri Oct 24, 2014 10:17 pm
Forum: Automation Tools
Topic: Pass repository item as parameter to user code
Replies: 26
Views: 17300

Re: Pass repository item as parameter to user code

Hey RR-Team, thx for including this feature into the latest release 5.2 :D
by bewiss
Thu Jul 10, 2014 11:06 am
Forum: General Questions
Topic: Windows 7 Task Scheduler Problem
Replies: 2
Views: 1774

Re: Windows 7 Task Scheduler Problem

Did you try this, after starting your IE, before beginning your tests?

repo.<your-IE-Instance>.Self.Maximize();
by bewiss
Mon May 19, 2014 2:42 pm
Forum: Automation Tools
Topic: Pass repository item as parameter to user code
Replies: 26
Views: 17300

Re: Pass repository item as parameter to user code

Hi Robert,

feature request is on it's way.
Hope it will be of avail :-)

Thx
by bewiss
Fri May 02, 2014 5:24 pm
Forum: Automation Tools
Topic: Pass repository item as parameter to user code
Replies: 26
Views: 17300

Re: Pass repository item as parameter to user code

Hi,
I would really like to have this feature implemented in the nearest future. Without, producing a lot of redundant code is unavoidable :cry:

Best regards
Bewiss
by bewiss
Thu Mar 27, 2014 7:12 pm
Forum: Object Identification and Technologies
Topic: xPath preceding-sibling last() not excepted by Ranorex
Replies: 8
Views: 13231

Re: xPath preceding-sibling last() not excepted by Ranorex

Hi krstcs, Without any axis given, you'll get a list of all text elements containing in the calling node. So, your suggestion will not work. Even without function calls, using an index, e.g. /following-sibling::text[1], does not work within Ranorex. Somtimes I just want to do a quick check on elemen...