Search found 24 matches

by avi6666
Fri May 14, 2021 8:29 pm
Forum: General Questions
Topic: Need to get List of all smart folder names under all test cases under one test suite
Replies: 1
Views: 917

Need to get List of all smart folder names under all test cases under one test suite

hi,

i have a test suite which has lot of test cases, and there are lot of smart folders under each test case.

i want to get list of all smart folder names ..

can anyone please help me out


1.JPG
by avi6666
Mon Mar 22, 2021 10:14 am
Forum: General Questions
Topic: ranorex Execution Stops on RDp session when we minimize it
Replies: 2
Views: 963

ranorex Execution Stops on RDp session when we minimize it

Ranorex Execution Stops on RDP session when we minimize it I have a cloud Vm created on Azure, I access it by RDP from my laptop , install my application and ranorex when i start ranorex execution it starts and after some time, when i minimize the RDP session window, it fails immediately showing the...
by avi6666
Mon Mar 30, 2020 12:59 pm
Forum: General Questions
Topic: Windows Dialogue box not loading through ranorex script
Replies: 8
Views: 1784

Re: Windows Dialogue box not loading through ranorex script

Thanks i debugged using the event viewer and fiddler, i got these exception An unmarshaling policy check was performed when unmarshaling a custom marshaled object and the class {45FB4600-E6E8-4928-B25E-50476FF79425} was rejected Log Name: Application Source: Microsoft-Windows-COMRuntime Date: 30/03/...
by avi6666
Mon Mar 30, 2020 9:03 am
Forum: General Questions
Topic: Windows Dialogue box not loading through ranorex script
Replies: 8
Views: 1784

Re: Windows Dialogue box not loading through ranorex script

Hi, Thanks so much for the qucik suggestions i will update ranorex version and check the issue again and one doubt .. this is the run application method from the ranorex lib public int RunApplication(string fileName, string arguments, string workingDirectory, bool maximized) i understood all the par...
by avi6666
Mon Mar 30, 2020 7:45 am
Forum: General Questions
Topic: Windows Dialogue box not loading through ranorex script
Replies: 8
Views: 1784

Re: Windows Dialogue box not loading through ranorex script

Hi, Im using Ranorex 9.1.0 version how exactly do you run the app under test? ----- i run the .exe file and the app opens and after 2-3 steps of script execution .. this dialogue box comes and it is getting struck there i run using this commonad Host.Local.RunApplication(CompletePath); and CompleteP...
by avi6666
Mon Mar 30, 2020 6:55 am
Forum: General Questions
Topic: Windows Dialogue box not loading through ranorex script
Replies: 8
Views: 1784

Re: Windows Dialogue box not loading through ranorex script

hi
can anyone plz help me with these
im struck with this
by avi6666
Sat Mar 28, 2020 4:50 pm
Forum: General Questions
Topic: Windows Dialogue box not loading through ranorex script
Replies: 8
Views: 1784

Windows Dialogue box not loading through ranorex script

Hi Frds, I have encountered a below problem, can anyone help me with these One Windows Dialogue box not loading through ranorex script in my application ... content in the dialogue box is not displaying and buttons are not clickable while i do manually it is working fine , no prob from app side. i p...
by avi6666
Mon Nov 04, 2019 10:43 am
Forum: General Questions
Topic: How to capture three similar windows in a List
Replies: 3
Views: 1051

How to capture three similar windows in a List

In a particular scenario i have three windows with same xpath. 3 similar windows (some contents will be different) i need to transverse through them and close two of them based on some condition of the contents available in them. i tried these below code ... nothing returns to the Ilist IList<Ranore...
by avi6666
Tue Jul 02, 2019 11:22 am
Forum: General Questions
Topic: How to bind varables to Code module from Excel file
Replies: 8
Views: 1259

Re: How to bind varables to Code module from Excel file

/* * Created by Ranorex * User: tester * Date: 29/09/2016 * Time: 1:34 PM * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using System.Drawing; using System.T...
by avi6666
Tue Jul 02, 2019 5:32 am
Forum: General Questions
Topic: How to bind varables to Code module from Excel file
Replies: 8
Views: 1259

Re: How to bind varables to Code module from Excel file

I did the same as you have mentioned string _varXYZ = ""; [TestVariable("2b46b416-cd6c-4c71-88b4-828bb3317560")] public string varXYZ { get { return _varXYZ; } set { _varXYZ = value; } } my doubt set { _varXYZ = value; } what happens in the above statement, value get the data from excel column and a...
by avi6666
Mon Jul 01, 2019 11:58 am
Forum: General Questions
Topic: How to bind varables to Code module from Excel file
Replies: 8
Views: 1259

Re: How to bind varables to Code module from Excel file

string _PrintVerify; [TestVariable("c530e178-dbf8-4c16-a262-d07d9dc16f82")] public string PrintVerify { get { return _PrintVerify; } set { _PrintVerify = here i want to get value from excel sheet bounded variable and set it ; } } set { _PrintVerify = here i want to get value from excel sheet bounded...
by avi6666
Mon Jul 01, 2019 7:55 am
Forum: General Questions
Topic: How to bind varables to Code module from Excel file
Replies: 8
Views: 1259

How to bind varables to Code module from Excel file

How to bind variables to Code module from Excel file i have situation where i have bind variables (column) form excel file to variables in code module like [TestVariable("379125e8-cc81-4051-9e88-0a0f48515f18")] public string Printformat { get { return _Printformat; } set { _Printformat = value; } } ...