Search found 5 matches

by gmaroli
Thu Aug 29, 2019 6:08 am
Forum: General Questions
Topic: Is it possible to get the run status of a Test Module by name
Replies: 1
Views: 1424

Is it possible to get the run status of a Test Module by name

Hi, Using Ranorex9.1 I have the following structure for a test: +TestCase1 -- Module1 --Module2 --Moduel3 I need to check if the Module 2 has passed and only then execute Module 3. One way is to set the Error Behavior at Test Case level to Continue with Sibling -- I cannot use this as i want to run ...
by gmaroli
Mon Aug 19, 2019 1:49 am
Forum: General Questions
Topic: Data Binding - Data Variables not using the default value
Replies: 2
Views: 1815

Re: Data Binding - Data Variables not using the default value

Thanks . This information is useful
by gmaroli
Fri Aug 16, 2019 1:26 am
Forum: General Questions
Topic: Data Binding - Data Variables not using the default value
Replies: 2
Views: 1815

Data Binding - Data Variables not using the default value

Hi, Using Ranorex 9.1 I have setup a CSV dataConnector to my test case Also did the Data Binding for the module. in the Module --> Manage Data Sources, I have setup a default value in my input CSV file if I do not pass any value to this variable, then I was expecting the Default value is picked But ...
by gmaroli
Thu May 23, 2019 12:39 am
Forum: General Questions
Topic: Error: get must declare a body because it is not marked abstract or extern.
Replies: 3
Views: 3416

Re: Error: get must declare a body because it is not marked abstract or extern.

hi Mcturtle, That did not work. However when I changed it as below it worked without any issues: public class itemLines     {         private string[] _lineItems;         public string itemgrp         {             get { return _lineItems[0]; }         }         public string itemname         {     ...
by gmaroli
Wed May 22, 2019 2:38 am
Forum: General Questions
Topic: Error: get must declare a body because it is not marked abstract or extern.
Replies: 3
Views: 3416

Error: get must declare a body because it is not marked abstract or extern.

Hi , I am learning Ranorex (C#) on the job. I have the below script : the main purpose of this script is to read a csv file and get the column names from that file however when i compile the script , following error is thrown: get must declare a body because it is not marked abstract or extern. Auto...