Search found 16 matches

by gowthamp
Thu Aug 04, 2016 5:09 pm
Forum: Automation Tools
Topic: Remote Agent
Replies: 5
Views: 2929

Re: Remote Agent

I ran through this issue long back. I recommend you to test in following way (hope it works), Step 1: Shutdown both VMs. Step 2: First Start the VM which has license manager and licenses installed (Ranorex Complete installation), Step 3: Make sure License manager service is running and Open Ranorex ...
by gowthamp
Mon Jul 25, 2016 3:47 pm
Forum: How To …
Topic: Total number of steps executed in test suite
Replies: 4
Views: 2045

Re: Total number of steps executed in test suite

Thanks for your response asdf and krstcs. One day in scrum, my manager asked "how many steps are we executing in regression testing?". I am stunned and the obvious response is "don't know" [we do have 10+ modules and dont know number of steps in them]. I would like to know "How can I count all steps...
by gowthamp
Fri Jul 22, 2016 10:16 pm
Forum: How To …
Topic: Total number of steps executed in test suite
Replies: 4
Views: 2045

Total number of steps executed in test suite

Hello,

I want to count total number of Ranorex Actions (Mouse click or wait or delay or validation) performed in test suite.

I want this information for stats purpose.
I am using Ranorex 6.0.1 in Windows 8.1.

Thanks.
by gowthamp
Fri Jun 03, 2016 2:26 pm
Forum: General Questions
Topic: Registration application
Replies: 2
Views: 1216

Re: Registration application

Hi Yeni, I have to write time to text file after every module in our application and I think some of my code might help you. Program.cs file will be executed once per test suite, so it will erase history from text file. Sample.cs file will write time to test file. In my scenario, I have to check whe...
by gowthamp
Tue May 31, 2016 5:26 pm
Forum: Bug Reports
Topic: Ranorex 6.0 remote and PDF Report
Replies: 4
Views: 1737

Re: Ranorex 6.0 remote and PDF Report

Hi,

I ran into this issue and notified support team. They said they are looking into this.

Gowtham
by gowthamp
Thu May 26, 2016 8:34 pm
Forum: How To …
Topic: Getting error *.rxzlog file is missing
Replies: 1
Views: 2273

Re: Getting error *.rxzlog file is missing

Had a session with Ranorex Technical Team person (Andy). He provided support in changing Ranorex settings and finding in new ReportToPdf.cs file. Followed this link "http://www.ranorex.com/blog/ranorex-report-to-pdf-conversion/" and downloaded new Ranorex_PDF_Library.zip. The new ReportToPdf.cs file...
by gowthamp
Thu May 26, 2016 4:37 pm
Forum: How To …
Topic: Getting error *.rxzlog file is missing
Replies: 1
Views: 2273

Getting error *.rxzlog file is missing

Hello, Configuration: OS: Windows 10, Ranorex: moved to 6.0 from 5.4 I updated to Ranorex 6.0 and made changes to ReportToPdf.cs file as per Ranorex 6.0 API changes (Report Compress). When I run test suite over another machine using Ranorex Agent, I am getting error "*.rxzlog not found"". I didn't m...
by gowthamp
Fri Apr 08, 2016 3:24 pm
Forum: How To …
Topic: How to attach and send external file through email
Replies: 2
Views: 2435

Re: How to attach and send external file through email

Thanks Robert,

Now I came to know how to attach external files.
by gowthamp
Tue Apr 05, 2016 8:04 pm
Forum: How To …
Topic: How to attach and send external file through email
Replies: 2
Views: 2435

How to attach and send external file through email

Hello, I am updating file in "C:\Users\testuser\Documents\test.txt" local machine with time taken to complete module group in Ranorex. In TEARDOWN I am converting report file to pdf and sending through email. I would like to attach and send updated "test.txt" file along with that pdf. I am using the...
by gowthamp
Mon Apr 04, 2016 2:41 pm
Forum: Automation Tools
Topic: Calculate time between steps in a recording
Replies: 17
Views: 6984

Re: Calculate time between steps in a recording

Thanks odklizec, It helped and I am able to get moduleGroupName in text file.

This thread is related to time between steps, so I thought it is related to calculating time between module groups.
by gowthamp
Fri Apr 01, 2016 5:19 pm
Forum: Automation Tools
Topic: Calculate time between steps in a recording
Replies: 17
Views: 6984

Re: Calculate time between steps in a recording

Can I add MODULE GROUP name while writing to text file? I am using the following code to generate and load content to text file. public System.DateTime startTime() { timeBefore = System.DateTime.Now; Report.Info("Content Generation Started on "+timeBefore+"."); return timeBefore; } public void endTi...
by gowthamp
Mon Feb 08, 2016 10:04 pm
Forum: How To …
Topic: Key sequence for DateTime format "YYYY-MM-DD HH-MM"
Replies: 7
Views: 4820

Re: Key sequence for DateTime format "YYYY-MM-DD HH-MM"

Attached screenshot of row, sorry for not attaching Snapshot[its revealing all GUI of application]. I have to create shiftname with testShift+"YYY-MM-DD HH-MM" format. After that I have to make changes to StartTime and EndTime which are 2nd and 3rd columns . Then I have to click on ShiftName[testShi...
by gowthamp
Mon Feb 08, 2016 7:21 pm
Forum: How To …
Topic: Key sequence for DateTime format "YYYY-MM-DD HH-MM"
Replies: 7
Views: 4820

Re: Key sequence for DateTime format "YYYY-MM-DD HH-MM"

Part One Creation: I created variable with curDate. After creating that I have save button which will save the variable with curDate value. I will make few other clicks and will return back to this page. Part Two : In that page I have to make a click on the variable curDate which was created earlier...
by gowthamp
Mon Feb 08, 2016 4:41 pm
Forum: How To …
Topic: Key sequence for DateTime format "YYYY-MM-DD HH-MM"
Replies: 7
Views: 4820

Re: Key sequence for DateTime format "YYYY-MM-DD HH-MM"

Defined variable with string type. "repo.Testcase.Title.PressKeys(""+variable+"", 100);" working fine. This creates variable with required format. In this testcase I have like to click on this variable after creating it. How can I click on this item? Thanks odklizec for your help in creating variabl...
by gowthamp
Fri Feb 05, 2016 7:40 pm
Forum: How To …
Topic: Continue with sibling does not work
Replies: 4
Views: 2632

Re: Continue with sibling does not work

I think you nested another test case as Child test case. To continue with Sibling option you need both under single test case.
Have a look at attachment which gives clear idea.