Search found 20 matches

by Alena
Wed May 14, 2014 6:52 pm
Forum: General Questions
Topic: Running Test Suite *.exe on another machine without Ranorex
Replies: 4
Views: 2712

Re: Running Test Suite *.exe on another machine without Ranorex

You can only open reports, not run Ranorex scripts on another machine without a separate license installed.
Please read http://www.ranorex.com/forum/ranorex-license-t6130.html and User Guide ( http://www.ranorex.com/support/user-guide-20.html ).
by Alena
Thu Nov 21, 2013 11:01 pm
Forum: Automation Modules and Examples
Topic: Mailing the reports
Replies: 3
Views: 3808

Re: Mailing the reports

Hi QAtesting, "send report by email" is a very useful feature for any automated tester, and this topic was discussed multiple times on Ranorex forums. So, if you enter "send report by email" into Search field, you'll receive tons of forum posts for all aspects of it. To know more of Ranorex web-site...
by Alena
Wed Nov 13, 2013 10:43 pm
Forum: Automation Tools
Topic: Menu path change different software version
Replies: 6
Views: 2034

Re: Menu path change different software version

Hi dariof, If you're sure that middle treeitem element always exists but only index changes and no other nodes may be placed between the existing ones in different versions, I'd offer to leave it in as /treeitem[3]/treeitem/element[@automationid='26226'] In this case the difference may be several mi...
by Alena
Wed Oct 30, 2013 8:07 pm
Forum: Automation Tools
Topic: Validate Image
Replies: 2
Views: 2015

Re: Validate Image

You can simply open properties of your ContainsImage validation action and set "Report Level on Failure" to Success and "Report level on Success" to Failure. This way if Contains -> will be reported as Failure, and if Not contains -> will be a Success.
by Alena
Tue Oct 22, 2013 4:16 pm
Forum: General Questions
Topic: Continue within test case
Replies: 16
Views: 3775

Re: Continue within test case

I usually set "Report level on failure" to "Warn" and "Continue on fail" to "True" for individual actions withing test cases that may fail. This way all scripts continue to run without stopping on failure, and I can analyze all warnings afterwards. As for "Continue with siblings", I see it in [Test ...
by Alena
Tue Oct 22, 2013 4:08 pm
Forum: General Questions
Topic: how to add validation function
Replies: 2
Views: 2114

Re: how to add validation function

Please, read User guide carefully before posting your issues. You can find it online here http://www.ranorex.com/support/user-guide-20.html or press F1 in Ranorex studio.
This will help you with most of the questions which often appear at the beginner level of using the tool.
by Alena
Mon Sep 23, 2013 9:34 pm
Forum: Bug Reports
Topic: BUG: Moving Test Cases in Test Suite appends "1" to TC name
Replies: 6
Views: 2559

Re: BUG: Moving Test Cases in Test Suite appends "1" to TC name

I constantly see similar issue when organizing Test Repo and moving objects up or down for better grouping. Where it was Business, Community, Healthcare (buttons for Categories in Navigation panel), it becomes Business1, Community1, Healthcare1. If I drag-and-drop an item couple more positions highe...
by Alena
Mon Sep 23, 2013 8:28 pm
Forum: Automation API
Topic: How to delete browser cookies (Internet Explorer)
Replies: 4
Views: 5890

Re: How to delete browser cookies (Internet Explorer)

Hi,

is it possible now to implement a new action/function for clearing cache/cookies so that I can do it by a single line of code for each of 4 browsers instead of creating 4 pages of code?

I'm sure most of Rx users test web-sites and have to use this functionality pretty often.

Thanks,
Alena.
by Alena
Wed Sep 04, 2013 8:46 pm
Forum: Bug Reports
Topic: FEATURE REQUEST: Layouts remember last setting
Replies: 8
Views: 2348

Re: FEATURE REQUEST: Layouts remember last setting

I just want to add to the request: when I set Debug layout in drop-down, then debug and run a piece of code, analyze report and get back to Rx suite, - I have to change from Default to Debug layout again each time (I work a lot with action properties). Can this layout setting be saved, let's say, fo...
by Alena
Wed Sep 04, 2013 8:12 pm
Forum: Object Identification and Technologies
Topic: Ranorex Studio 4.1.0 cannot find objects that Spy can find.
Replies: 35
Views: 13327

Re: Ranorex Studio 4.1.0 cannot find objects that Spy can find.

I also encountered this issue soon after upgrade but my case was relatively easy to fix (it's still a bug though). When I created a Simple folder in one of Ranorex-created Repo folders and added several objects in it, Spy could always highlight these objects while Test run never found them. When I t...
by Alena
Thu Aug 22, 2013 3:16 pm
Forum: General Questions
Topic: "Abbreviate Item Path" removed in 4.1.0
Replies: 22
Views: 8592

Re: 4.1.0

Adding +1 for odklizec's suggestion. Especially the last phrase (creating an option in Rx settings) +10.
by Alena
Thu Jul 25, 2013 10:03 pm
Forum: General Questions
Topic: Wait for page load
Replies: 2
Views: 8510

Re: Wait for page load

This can be done using function "WaitForDocumentLoaded()" which requires user code and was discussed in details at http://www.ranorex.com/forum/feature-request-webdocument-waitforcomplete-t4907.html As a simple workaround, I prefer to choose some element at the very bottom of the web-page and set lo...
by Alena
Fri Jul 12, 2013 5:05 pm
Forum: Automation Tools
Topic: How to interact with Chrome browser elements
Replies: 3
Views: 3437

Re: How to interact with Chrome browser elements

That's correct, it's impossible to identify objects but workaround exists, Oksana.
See my post on this issue at http://www.ranorex.com/forum/ranorex-is ... t4534.html
by Alena
Tue Jun 25, 2013 8:16 pm
Forum: General Questions
Topic: Identify element without ID
Replies: 3
Views: 2300

Re: Identify element without ID

I tried this method as well but it takes enormous amount of time to find an element, so I hoped maybe something faster and easier is available which I don't know about. In another part of my project, usually up to 6-8 validation points are checked per second, while here it takes up to 15-17 seconds ...
by Alena
Thu Jun 20, 2013 4:54 pm
Forum: General Questions
Topic: Identify element without ID
Replies: 3
Views: 2300

Identify element without ID

Hi all! I have a web-page consisting of multiple elements div[#'blogEntry']. They don't have unique ID's but I need to choose the first and the last elements. I was able to create a Rxpath to choose the first one (its RxPath is shown on png attached). Though it's exactly the same as the last element...