Search found 16 matches

by jarrettmk
Mon Jul 12, 2021 8:44 pm
Forum: Bug Reports
Topic: Error while loading *.csproj file in Studio
Replies: 10
Views: 5547

Re: Error while loading *.csproj file in Studio

Has there been any update on this issue? I'm running into the exact same error. Can't load file TNEW_Repository.cs under D:\Express Web\<rest of file path here>. Check the file permission and the existence of that file. If I click Show Exception I am seeing the same exact error as puniar. It is work...
by jarrettmk
Tue Mar 16, 2021 6:03 pm
Forum: General Questions
Topic: How to get cookies from Browser
Replies: 5
Views: 2250

Re: How to get cookies from Browser

The previously posted solution worked for me up until the latest build our developers sent over. They said that they have changed the cookies so that now they cannot be accessed via JavaScript so the above mentioned solution is now breaking. Is there another way to grab cookies from the browser with...
by jarrettmk
Thu Nov 19, 2020 6:37 pm
Forum: General Questions
Topic: .NET 5/C# 9 Support?
Replies: 5
Views: 2231

.NET 5/C# 9 Support?

Does anyone know if Ranorex Studio plans on supporting .NET 5/C# 9?
by jarrettmk
Tue Jan 08, 2019 6:22 pm
Forum: General Questions
Topic: How to get cookies from Browser
Replies: 5
Views: 2250

Re: How to get cookies from Browser

That did the trick. Thanks!
by jarrettmk
Mon Jan 07, 2019 9:06 pm
Forum: How To …
Topic: Need help handling different date formats between website and mobile app
Replies: 2
Views: 1470

Re: Need help handling different date formats between website and mobile app

This would probably do the trick for you:
            var capturedVariable = "01/07/2019";
            var capturedVariableAsDateTime = Convert.ToDateTime(capturedVariable);
            var mobileCompatibleVariable = capturedVariableAsDateTime.ToString("M/d/yyyy");
by jarrettmk
Mon Jan 07, 2019 8:36 pm
Forum: General Questions
Topic: How to get cookies from Browser
Replies: 5
Views: 2250

How to get cookies from Browser

Our web application sets a cookie that I need to retrieve and decrypt in order to get some information needed to validate later in my test. I have looked at Host.Current as well as the following to try and get the cookies with no luck... var cookies = Repository.OURSITE.Self.ExecuteScript("document....
by jarrettmk
Mon Jan 07, 2019 8:32 pm
Forum: How To …
Topic: How to get cookies from Browser
Replies: 1
Views: 1688

How to get cookies from Browser

Our web application sets a cookie that I need to retrieve and decrypt in order to get some information needed to validate later in my test. I have looked at Host.Current as well as the following to try and get the cookies with no luck... var cookies = Repository.OURSITE.Self.ExecuteScript("document....
by jarrettmk
Fri Sep 21, 2018 1:16 am
Forum: How To …
Topic: How to include Ranorex in build process?
Replies: 4
Views: 2542

Re: How to include Ranorex in build process?

I just implemented Ranorex in our CI/CD pipeline. I didn't have any problems with our Bamboo build server building the solution as long as Ranorex Studio was installed on the build server. We didn't want to use one of our Studio licenses for just the build server so we decided to check-in our Bin fo...
by jarrettmk
Thu Sep 20, 2018 11:57 pm
Forum: Automation Modules and Examples
Topic: Automatic Documentation for modules
Replies: 2
Views: 6161

Re: Automatic Documentation for modules

If you go into the Build tab of the Properties for your projects there is a checkbox you can enable for "XML documentation file" in the Output section. You can then download Sandcastle Help File Builder here: https://github.com/EWSoftware/SHFB It has pretty straightforward step-by-step instructions ...
by jarrettmk
Thu Sep 20, 2018 10:02 pm
Forum: Automation Tools
Topic: Ranorex spy not detecting all the elements(Child elements are disabled)
Replies: 5
Views: 2066

Re: Ranorex spy not detecting all the elements(Child elements are disabled)

Did you make sure to also modify the exe for Spy to run as Admin? I ran into this issue at first as well. Studio was running as Admin but when I would open Spy it would be regular permissions.
by jarrettmk
Thu Sep 20, 2018 9:35 pm
Forum: General Questions
Topic: Urgent: <select option not reporting error on click but clicking to upper left corner of dom (maybe?)
Replies: 7
Views: 1938

Re: Urgent: <select option not reporting error on click but clicking to upper left corner of dom (maybe?)

When you tried a SetValue what value did you set? For our web application I usually have to do SetValue on TagValue to get it to work.
by jarrettmk
Thu Sep 20, 2018 9:25 pm
Forum: General Questions
Topic: teardown getting current test info for email
Replies: 5
Views: 1749

Re: teardown getting current test info for email

This is a status service I wrote as I need to update some external testing systems with each test case's status. Sounds like it may work well for your situation of needing to check if a test case failed so you can send an email. However, I would agree with Stub sending the compressed test log at the...
by jarrettmk
Thu Sep 20, 2018 9:11 pm
Forum: General Questions
Topic: Where to get the elapsed time for entre suite run
Replies: 1
Views: 1466

Re: Where to get the elapsed time for entre suite run

I think this might be what you're after:
var dblElapsed = (double)Ranorex.Core.Reporting.ActivityStack.Instance.RootActivity.ElapsedTime.Milliseconds / 1000;
by jarrettmk
Thu Sep 20, 2018 3:46 pm
Forum: Bug Reports
Topic: Ranorex 8.2.1 Can't Find Objects in Chrome on Server 2012 R2
Replies: 3
Views: 1733

Ranorex 8.2.1 Can't Find Objects in Chrome on Server 2012 R2

I am setting up my CI/CD pipeline and running my tests on a Remote Agent (RanorexRemoteAgent-4.0.0.msi) installed on Windows Server 2012 R2 running Chrome Version 69.0.3497.100 (Official Build) (64-bit). I have ensured the extension is properly installed and that my tests work in Chrome locally. How...
by jarrettmk
Thu Sep 20, 2018 3:33 pm
Forum: General Questions
Topic: Bamboo CI/CD Implementation Issues
Replies: 2
Views: 2185

Re: Bamboo CI/CD Implementation Issues

Update on the JUnit issue : After viewing the JUnit file that Ranorex generated in a HEX editor I found there was the UTF-8 BOM character at the very beginning of the file which is what is causing the issue. I was able to write a Powershell script to remove the character before going on to the pars...