Search found 7 matches

by rickcuddihey
Sun Feb 27, 2022 5:55 pm
Forum: Object Identification and Technologies
Topic: Calling Ranorex from Jenkins pipeline
Replies: 1
Views: 1022

Calling Ranorex from Jenkins pipeline

Hi, What is the best way to run Ranorex from a Jenkins pipeline. Jenkins is running as an application not a service. I have tried the following. Running a batch file set to run as admin. The batch file works but the screen is black so no clicking on buttons. Installing the plugin and running ranorex...
by rickcuddihey
Fri Feb 22, 2019 2:54 pm
Forum: General Questions
Topic: Cannot copy files on a mapped drive with Ranorex
Replies: 8
Views: 2917

Re: Cannot copy files on a mapped drive with Ranorex

It has nothing to do with the drives being mapped or not mapped. They are always mapped and available. Here's a better explanation. I develop common code in Visual Studio that is used in Ranorex and other test applications. I have a class for copying files. This class copies from local drives and fr...
by rickcuddihey
Thu Feb 21, 2019 7:26 pm
Forum: General Questions
Topic: Cannot copy files on a mapped drive with Ranorex
Replies: 8
Views: 2917

Re: Cannot copy files on a mapped drive with Ranorex

I have fixed this for now by running in normal mode and impersonating the local user when I want to copy files locally.

I would still like to know if this this a bug or not? Why does Visual Studio (same IDE framework used by Ranorex I believe) not experience this issue?

Thanks again.

Rick
by rickcuddihey
Thu Feb 21, 2019 5:44 pm
Forum: General Questions
Topic: Cannot copy files on a mapped drive with Ranorex
Replies: 8
Views: 2917

Re: Cannot copy files on a mapped drive with Ranorex

Thank you for the reply. Disabling the "Use UiaLauncher..." option did not help. Running Ranorex in non-administrator mode does fix my problem with accessing the shared drive but now I have a problem copying local files. I am running Ranorex in administrator mode. I need to copy local files on my sy...
by rickcuddihey
Wed Feb 20, 2019 5:55 pm
Forum: General Questions
Topic: Cannot copy files on a mapped drive with Ranorex
Replies: 8
Views: 2917

Cannot copy files on a mapped drive with Ranorex

Hi, I have C# code that simply copies a file from one folder to another folder on a mapped network drive . This code works fine in Visual Studio. When I run the exact same code in Ranorex I get "System.IO.DirectoryNotFoundException: Could not find a part of the path 'R:\Myshare'." Why can't I run th...
by rickcuddihey
Fri Jan 18, 2019 9:11 pm
Forum: How To …
Topic: Getting all child tree items at run time
Replies: 8
Views: 3826

Re: Getting all child tree items at run time

Great. Thank you. That did help. I can expand the three children under the top node. After that I cannot get the children of the next nodes. This truly is frustrating. I must need to invoke an update on each child after I get the list from CreateAdapter() or something??? Here's where I am. If you an...
by rickcuddihey
Thu Jan 17, 2019 7:38 pm
Forum: How To …
Topic: Getting all child tree items at run time
Replies: 8
Views: 3826

Getting all child tree items at run time

Hi, I have a parent tree element that can have different child elements at run time. I don't care about the child elements I just want to expand all of them because they also have children. I cannot put all the child elements in the repo because there are many and as I mentioned they can be differen...