Search found 26 matches

by palbaret
Fri Jun 30, 2017 12:58 pm
Forum: Automation API
Topic: ToXmlDoc Obsolete - Replace with PrintXml which is unknown
Replies: 1
Views: 1949

ToXmlDoc Obsolete - Replace with PrintXml which is unknown

Hi, I want to migrate to Ranorex 7.1 but I have an obsolete warning in version 6.0 My code is ByVal tcActivity As TestCaseActivity ... Dim xmlDoc As Ranorex.Core.FastXml.XmlDoc = New Ranorex.Core.FastXml.XmlDoc("rxlog") Dim xmlNode As Ranorex.Core.FastXml.XmlNode = tcActivity.ToXmlNode(xmlDoc) I hav...
by palbaret
Thu Oct 13, 2016 1:10 pm
Forum: Mobile Testing
Topic: "Android Virtual Device" emulator not recognized by Ranorex
Replies: 1
Views: 2560

"Android Virtual Device" emulator not recognized by Ranorex

Hi, I have launched an android emulator thru Android Virtual Device on my computer. On it the ranorex services is running, but Ranorex devices is not able to find it. My configuration is: Android emulator: adb devices from \Ranorex 6.0\Bin\RxEnv\Android\tools>adb.exe devices returns: emulator-5554 d...
by palbaret
Thu Apr 14, 2016 8:25 am
Forum: Automation Tools
Topic: Does Studio has a UserInterface in french
Replies: 2
Views: 1656

Re: Does Studio has a UserInterface in french

Thanks, for your answer.
his confirms my point of view.

As my customer is a Tunisian Administration, I'll try to convince them.
by palbaret
Wed Apr 13, 2016 6:04 pm
Forum: Automation Tools
Topic: Does Studio has a UserInterface in french
Replies: 2
Views: 1656

Does Studio has a UserInterface in french

Hi everyone,

One of my customer want a tool with an interface in French.

does Ranorex has an interface in French and a User guide in French also?

Thks for help?
Patrick
by palbaret
Wed Apr 13, 2016 6:01 pm
Forum: Automation Tools
Topic: Integration Testlink
Replies: 6
Views: 3553

Re: Integration Testlink

I found this link which maybe inetresting:
http://www.ranorex.com/blog/integrating ... linkconfig
by palbaret
Tue Nov 18, 2014 12:04 pm
Forum: Automation Tools
Topic: Run a test suite name different fromthe assembly name
Replies: 3
Views: 2881

Run a test suite name different fromthe assembly name

Hi all, In my solution I have different projects for a given project, I want to have a testsuite which have a name different from the project assembly name. For example, I have a solution with a test suite testproject1 with an assembly name called: testproject1 a test suite NewTestproject2 with an a...
by palbaret
Tue Oct 28, 2014 1:57 pm
Forum: Automation Tools
Topic: How do I check log file for erros and warnings?
Replies: 1
Views: 2624

Re: How do I check log file for erros and warnings?

Use a UserCode extension
then with .net function open your log file and check its content

if you find an Error, raise a Report.failure("Some error are present in the log file")
by palbaret
Tue Oct 28, 2014 8:55 am
Forum: Automation Tools
Topic: Integration Testlink
Replies: 6
Views: 3553

Integration Testlink

Hi everyone On our system, we execute manual and automatic tests. Manual test definition, campaign, execution are managed in testlink. Automatic test are executed thru Ranorex. we want to store result execution in Testlink. Do you have some simple code which is able to do that? regards, Patrick Alba...
by palbaret
Tue Oct 28, 2014 8:48 am
Forum: General Questions
Topic: how to run Ranorex on different windows session?
Replies: 2
Views: 1699

Re: how to run Ranorex on different windows session?

Thanks, I received also an answer from the Ranorex Support. They say to do that: "You will need floating licenses in order to use Ranorex on a terminal server." For our infrastrusture, as the gap betwenn the floating license and the node-locked license is very important, we will look for another It ...
by palbaret
Fri Oct 24, 2014 3:49 pm
Forum: General Questions
Topic: how to run Ranorex on different windows session?
Replies: 2
Views: 1699

how to run Ranorex on different windows session?

Hi I have an issue with the licensing of Ranorex product. I have anode-locked license install on my server. My server contains an heavy desktop application. I want with one session develop my scripts and in a 2nd session I want to execute my tests. When I launch Ranorex in the 2nd session, I obtain ...
by palbaret
Mon Jan 27, 2014 2:28 pm
Forum: General Questions
Topic: Node-Locked licence and computer re-format
Replies: 1
Views: 2142

Node-Locked licence and computer re-format

Hi every one, On my computer, I have Ranorex Studio installed with a Node-Locked license. I want to re-format my computer. What have I to take care before formating my computer to be able to setup and use Ranorex studio after the new installation? With my license key,shall I use Ranorex studio as be...
by palbaret
Wed Jul 03, 2013 6:52 am
Forum: Automation API
Topic: how to execute a piece of code for all testcases
Replies: 6
Views: 3725

Re: how to execute a piece of code for all testcases

For VB.net I use the following code
AddHandler ActivityStack.Instance.BeginActivity,AddressOf ActivityStack_Instance_BeginActivity

thanks for the sample
by palbaret
Thu Jun 06, 2013 2:14 pm
Forum: Automation API
Topic: how to execute a piece of code for all testcases
Replies: 6
Views: 3725

Re: how to execute a piece of code for all testcases

My reason is: I want to implemente an integration with a code coverage tool. This tool record my actions on the server and provide me a file with all dll/methods ran during my tests. To do that, before each testcase, I have to send a command line to this tool at the beginning at the end of every tes...
by palbaret
Mon Jun 03, 2013 10:45 am
Forum: Automation API
Topic: how to execute a piece of code for all testcases
Replies: 6
Views: 3725

Re: how to execute a piece of code for all testcases

Thanks for your answer but it doesn't completely fit my concern. for example I create 2 code modules TestcaseSetupModule and TestcasetearDownModule. Inside these modules, I will put all my specific code. My questions is how I can execute each time these modules? These modules will be mandatory in ou...
by palbaret
Fri May 24, 2013 6:28 pm
Forum: Automation API
Topic: how to execute a piece of code for all testcases
Replies: 6
Views: 3725

how to execute a piece of code for all testcases

hi every one, I want to execute a piece of code before and after the execution of every testcase. For example, at the beginning of a testcase i want to call a webservice with the testcaseId, and also when the testcase ends, I want to call another webservice with the testcaseId and the test result. t...