Search found 10 matches

by lawrence
Wed Dec 20, 2017 12:10 pm
Forum: General Questions
Topic: Floating License not available after Ranorex is closed
Replies: 2
Views: 1321

Re: Floating License not available after Ranorex is closed

thanks for the info, odklizec, your help is much appreciated!
by lawrence
Wed Dec 20, 2017 11:05 am
Forum: General Questions
Topic: Floating License not available after Ranorex is closed
Replies: 2
Views: 1321

Floating License not available after Ranorex is closed

Hi everyone Sometimes I need to use our Ranorex Floating License on a VM and then I switch back to working on my laptop. Even after I have closed Ranorex on the VM and logged out of the VM I'm still not able to login to Ranorex on my laptop. After waiting 30mins I still get the License Manager error...
by lawrence
Fri Oct 13, 2017 2:19 pm
Forum: Automation Tools
Topic: Bamboo CI Integration: Ranorex dependencies for msbuild
Replies: 2
Views: 2192

Re: Bamboo CI Integration: Ranorex dependencies for msbuild

Thanks a lot for the quick reply, odklizec. So it seems I need to schedule the build to a time when I’m not working on the tests or get another node locked license for the agent.... Hi, I'm afraid, you need to install Ranorex on the build server. Check for example this post: https://www.ranorex.com/...
by lawrence
Fri Oct 13, 2017 1:50 pm
Forum: Automation Tools
Topic: Bamboo CI Integration: Ranorex dependencies for msbuild
Replies: 2
Views: 2192

Bamboo CI Integration: Ranorex dependencies for msbuild

Hi everyone I'm currently trying to integrate our Ranorex test solution (Ranorex 7.2.0, C#, AUT Java) into our Bamboo CI infrastructure (based on this blogpost: https://www.ranorex.com/blog/bamboo-ci-with-ranorex-test-automation/ ). So far I've manged to set up a build plan that checks out the the g...
by lawrence
Thu Oct 05, 2017 10:17 am
Forum: Automation API
Topic: LineageGlueRule 'cef_win32_rule'-Exception
Replies: 5
Views: 3069

LineageGlueRule 'cef_win32_rule'-Exception

Hi forum I'm intermittently getting the following error message when executing my test suite (Ranorex 7.2.0, Java SWT applicaiton): LineageGlueRule 'cef_win32_rule' caused NullReferenceException on Execute. Object reference not set to an instance of an object. According to the logfile the error mess...
by lawrence
Mon Sep 11, 2017 1:38 pm
Forum: Automation API
Topic: Renaming User Code Method
Replies: 1
Views: 2240

Renaming User Code Method

Hi all I'm using Ranorex 7.1.1 (with Ranorex Studio as IDE) and am currently working on improving the usability of our user code collection. For this I'm quite often renaming User Code Methods (without changing their signature). After renaming a user code method I get build errors and have to go int...
by lawrence
Mon Jul 03, 2017 4:39 pm
Forum: Automation API
Topic: Accessing advanced, dynamic data in user code
Replies: 4
Views: 3213

Re: Accessing advanced, dynamic data in user code

Managed to find a solution by using Ranorex.Plugin library (containing JavaObjectWrapper). In case anybody is interested here's the code: [UserCodeMethod] public static void SelectBookmark(String bookmarkText){ if(!repo.AJApp.LesezeichenTabInfo.Exists(1000)){ repo.AJApp.Navigation.GlobalActions.Lese...
by lawrence
Mon Jul 03, 2017 4:08 pm
Forum: Automation API
Topic: Accessing advanced, dynamic data in user code
Replies: 4
Views: 3213

Re: Accessing advanced, dynamic data in user code

Vaughan.Douglas wrote: Changed the data var from Object to List
This doesn't compile,

Code: Select all

item.Element.GetAttributeValue("Data")
returns an object and not a list.
More specifically, as I can see in the debugger, it actually returns an object of type "JavaObjectWrapper", but not sure how to handle this type...
by lawrence
Mon Jul 03, 2017 3:16 pm
Forum: Automation API
Topic: Accessing advanced, dynamic data in user code
Replies: 4
Views: 3213

Accessing advanced, dynamic data in user code

Hi all In Ranorex spy (version 7.1. AUT: Java, SWT) I can see the advanced, dynamic properties of a TreeItem: Spy.PNG What I would like to do is to access the property "DisplayName" in "Data" of the "Dynamic" section in an user code method. I've managed to get the "Data" attribute from the element a...
by lawrence
Tue May 09, 2017 4:48 pm
Forum: Automation API
Topic: Execute click() on Ranorex.Core.Element (C#)
Replies: 1
Views: 4577

Execute click() on Ranorex.Core.Element (C#)

Hi all new to Ranorex and new to C#, hence I've got the following question: When I pass a repository item into a user code method as Ranorex.Adapter I can use method Click() to click that item. In my user code method I however ended up with objects of type Ranorex.Core.Element which I want to click....