Search found 30 matches

by sergii
Thu Apr 20, 2017 9:26 pm
Forum: General Questions
Topic: Running "nuget restore" during project building
Replies: 1
Views: 2183

Running "nuget restore" during project building

Recently we have moved all our Dlls and other binaries out of github. All the dependencies/references now stored in packages.config file. Sample: <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Google.Apis.Gmail.v1" version="1.25.0.825" targetFramework="net451" /> <package id="NUnit" ...
by sergii
Tue Apr 18, 2017 8:17 pm
Forum: General Questions
Topic: Repository file modification from Visual Studio
Replies: 2
Views: 1356

Repository file modification from Visual Studio

I know it's possible to open the Ranorex project in the visual studio and create tests/run them from there.
However Ranorex IDE has a good representation of the rxrep files.
Is there a way to see these files in a table way (with nested capabilities) from visual studio?
by sergii
Wed Feb 01, 2017 6:54 pm
Forum: General Questions
Topic: simpledataconnector to csv
Replies: 5
Views: 1656

Re: simpledataconnector to csv

I think you can just copy and paste the whole table into excel and then save it as CSV. Alternatively you can grab the XML representation from the suite file and using mass replacement (Sublime 3 or notepad++) to replace tags and brackets "/><" with respective commas. A little bit of time required t...
by sergii
Tue Jan 24, 2017 8:24 pm
Forum: General Questions
Topic: change dataset location
Replies: 3
Views: 1202

Re: change dataset location

Usually I include dataset (CSV files) into the same git repository. So when Continuous Integration tool (Bamboo, Jenkins, or Travic CI) will pick the job and clone it to other machine, you will have the same relative path from your executable and/or to the project to the dataset file. For example .\...
by sergii
Mon Jan 23, 2017 11:18 pm
Forum: General Questions
Topic: extending Ranorex.Report
Replies: 5
Views: 1532

Re: extending Ranorex.Report

I have found pretty elegant and easy solution to my problem. I just needed to add this two methods to the extension methods: public static void Print(this String s){ Report.Info(s); } public static void Print(this int i){ Report.Info(i.ToString()); } As a result, now I can use the following code in ...
by sergii
Mon Jan 23, 2017 10:49 pm
Forum: General Questions
Topic: Support for C#6.0
Replies: 3
Views: 2953

Support for C#6.0

I'm trying to use interpolation of strings in the following code: int age = 5; string greeting = $"You are {age} years old"; Not sure if the current version of SharpDevelop allows us to compile project with 4.6+ framework and/or C# 6.0+ At least in my Project > Properties > Compiling I see only 4.5....
by sergii
Fri Jan 13, 2017 11:08 pm
Forum: General Questions
Topic: extending Ranorex.Report
Replies: 5
Views: 1532

Re: extending Ranorex.Report

Thank you. We are already using extension methods, but I'm unable to extend the Ranorex.Report functionality. Anybody added new methods to Ranorex class itself here? (Instead of creating new Methods to the Ranorex objects) I understand that I can extend the Adapter for example and can make Ranorex.B...
by sergii
Fri Jan 13, 2017 7:10 am
Forum: General Questions
Topic: Looping/Iterating a test suite (not a test case)
Replies: 3
Views: 1476

Re: Looping/Iterating a test suite (not a test case)

Previous answer is correct. It's not obvious initially but you can have Test Cases inside other test cases. I would add that it's recommended to join test scripts into the test cases that actually do a real tests for you. In your example TC 1 is Open browser. What if this test pass or fail, did you ...
by sergii
Thu Jan 12, 2017 1:47 am
Forum: General Questions
Topic: extending Ranorex.Report
Replies: 5
Views: 1532

extending Ranorex.Report

As I understand there is a Ranorex namespace with public class Report inside. We have a need to extend the standard logging functionality. One of the simplest examples is to make a wrapper for Report.Info(string s) to make it possible to pass not only variables, but int variables as well. I'm trying...
by sergii
Wed Nov 23, 2016 2:42 am
Forum: General Questions
Topic: Code analysis tool in Ranorex IDE
Replies: 1
Views: 2048

Code analysis tool in Ranorex IDE

Since recently we have integration with Nuget in the Ranorex 6. What code quality, code coverage, and other tools have you been able to use natively in IDE? I know that you can import project in the regular visual studio and after spending some time make it work there, but I want to use something th...
by sergii
Tue Nov 15, 2016 5:20 pm
Forum: General Questions
Topic: Ranorex on Windows Server 2016
Replies: 1
Views: 1845

Ranorex on Windows Server 2016

I didn't find WS 2016 to be in the list of supported OSs. Did somebody already tried to install it there (at least Ranorex Runtime). Our plan is to use Terraform to create on demand AWS instances of Windows Server, run tests from there and shut them down. Kind of scalable approach to the management'...
by sergii
Fri Mar 25, 2016 8:37 pm
Forum: Bug Reports
Topic: Unable to rename any Datasource (RX 5.4.5.19886)
Replies: 1
Views: 1671

Unable to rename any Datasource (RX 5.4.5.19886)

I was trying to rename the existing simple data source name and I am unable to do that. Every time I renamed and click ok button it revert back to the previous name. This is I am observing in Ranorex Version: 5.4.5.19886, waiting to for the solutions. :oops:
by sergii
Thu Jul 16, 2015 9:32 pm
Forum: General Questions
Topic: Windows 10 and new browser
Replies: 6
Views: 2733

Re: Windows 10 and new browser

Any news regarding the support?

11 days till official release of Edge, but we cannot run auto tests there.

We love Ranorex and don't want to run all those tests manually :)
by sergii
Fri Feb 27, 2015 8:42 pm
Forum: General Questions
Topic: open Remote Desktop Connection required?
Replies: 2
Views: 2372

Re: open Remote Desktop Connection required?

Thanks a lot. Don't remember it have been mentioned anywhere in documentation or best practices. Just found another topic about this. When you log on to the remote computer via the Remote Desktop Connection client, the remote computer becomes locked preventing other users from accessing it. If you c...
by sergii
Thu Feb 26, 2015 9:54 pm
Forum: General Questions
Topic: open Remote Desktop Connection required?
Replies: 2
Views: 2372

open Remote Desktop Connection required?

I'm having very simple test that cannot be executed in Amazon Web Services box without currently open RDC session. I'm using Only Code Modules (no recordings) and repo saved items. Local environment: Run manually - success. Remote AWS box (with opened RDC): Run EXE manually - success. Remote AWS box...