Search found 18 matches

by barkha
Wed Aug 08, 2018 10:13 pm
Forum: How To …
Topic: Programming Class
Replies: 1
Views: 1705

Re: Programming Class

Are you looking for online class or on-campus?
For ranorex You can focus on C# or VB.net.
Here is ranorex code repository : https://www.ranorex.com/help/latest/han ... -examples/

You can join a course on plural sight.
by barkha
Fri Jul 27, 2018 4:00 pm
Forum: General Questions
Topic: Spreadsheet Adapter
Replies: 5
Views: 1609

Re: Spreadsheet Adapter

Hello, So I reached a conclusion that fpspreadsheets are not supported yet. For my purposes , I simply traverse using tabs and copy the data I want to validate. Then I use the Code Example Validate clipboard to verify the value. It is not the best way but Since I need to only look some values it wor...
by barkha
Fri Jul 27, 2018 3:55 pm
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Re: Run multiple projects through powershell

Dear hubjon and asfd,
If you are using Mirosoft tfs , you can create a job that run your script that will run after every update. This script can then in turn run your tests.
by barkha
Thu Jul 26, 2018 8:35 pm
Forum: Automation Modules and Examples
Topic: Best way to test and revert
Replies: 4
Views: 10960

Re: Best way to test and revert

I agree with Krstcs. You can create multiple global variables for username. Then make username in you "Create user" recording a variable and bind it to a different global variable every time you reuse it. You will be able to reuse the code with no problem. The rollback the database in your teardown ...
by barkha
Thu Jul 26, 2018 8:26 pm
Forum: How To …
Topic: Integrate Visual Studio and existing Ranorex tests
Replies: 1
Views: 1774

Integrate Visual Studio and existing Ranorex tests

Hello, I know there are some threads on similar topic but I still couldn't find the solution. I have some Ranorex tests already created for our desktop application. I am looking to create a code coverage report. I found out that you could integrate Ranorex and Visual studio. However, the example dis...
by barkha
Mon Feb 12, 2018 7:38 pm
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Re: Run multiple projects through powershell

Hello Everyone,
Sorry for digressing.
Here is how it works, for people who might want to save their files on new locations:
You need to add /rf:"location" at the end of Ranorex.exe like :

Start-Process -FilePath $exe_path/rf:"location\filename.extension"
by barkha
Fri Feb 09, 2018 4:13 pm
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Re: Run multiple projects through powershell

Hello McTurtle, Yes we are still talking about powershell I want to pass a path through powershell where I want my ranorex reports to be saved. This path change and I do not want to change it using Ranorex UI. I saw on a diffrent forum that you can use something like : TestReport.Setup(ReportLevel.D...
by barkha
Thu Feb 08, 2018 12:05 am
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Re: Run multiple projects through powershell

Hello, $RxArguments = '/param:Global_Parameter=($parameter)' $process = Start-Process "Path\bin\Debug\Project.exe" -NoNewWindow -Wait -PassThru -ArgumentList $RxArguments That is how I am trying to use the code I am tying to pass it to a global variable which is binded to a local variable. I intend ...
by barkha
Wed Jan 31, 2018 4:11 pm
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Re: Run multiple projects through powershell

Thanks McTurtle, I was able to work on your scripts and so far I can execute all test and identify failed test to save and zip and send them to my email. However, I am trying to pass a global variable to all tests. How do I do it through powershell? If I type C:\Users\username\Documents\Ranorex\Rano...
by barkha
Mon Jan 22, 2018 7:14 pm
Forum: How To …
Topic: Run multiple projects through powershell
Replies: 11
Views: 2945

Run multiple projects through powershell

Greetings. I have created multiple Ranorex projects that cover different parts of our software. I would now like to run all projects sequentially using powershell whenever there is a new version. However, I am new to powershell and do not have a lot of experience. I want to know if someone has ever ...
by barkha
Fri Sep 15, 2017 1:59 pm
Forum: General Questions
Topic: Ranorex Web testing
Replies: 1
Views: 1157

Ranorex Web testing

Hello , I have been not able to test web applications using Ranorex Studio. It selects the whole page for one element(Screenshot attached). Thus, Not letting me recognize individual text boxes etc. Is a plugin required? I am using ranorex 7.1 . It seems I have plugins to support Chrome and Firefox ....
by barkha
Fri Sep 08, 2017 3:23 pm
Forum: Automation API
Topic: Stuck accessing SQL Server in code
Replies: 7
Views: 3557

Re: Stuck accessing SQL Server in code

Thank You ! Exactly what I was looking for.
by barkha
Fri Sep 01, 2017 6:20 pm
Forum: General Questions
Topic: Validate a lot of reports
Replies: 2
Views: 1255

Validate a lot of reports

Hello, I have an application that create reports on different data sets presented. so i saw an example in the manual of comparing files using .csv files. However it says that due to performance issues it is not advised to use csv file comparisons on large number of reports. Make sense,However, I hav...
by barkha
Fri Sep 01, 2017 6:12 pm
Forum: Automation API
Topic: Stuck accessing SQL Server in code
Replies: 7
Views: 3557

Re: Stuck accessing SQL Server in code

Hello, So for example I am trying to delete some data from specific table in my database. Now sometimes due to access constraints my data might not be deleted. Sql will throw an error . However, My ranorex report say query executed successfully. So i don't know if data actually got deleted from data...
by barkha
Tue Aug 15, 2017 7:26 pm
Forum: Automation API
Topic: Stuck accessing SQL Server in code
Replies: 7
Views: 3557

Re: Stuck accessing SQL Server in code

Hello,
I have also being using the same method to run commands on the back end. I want to know how we can get the result to show up from the back end in the report. I mean sometimes the query fails I want to display it in the report or fail the test based on the query status.