Search found 49 matches

by Tnimni
Mon Aug 11, 2014 4:23 pm
Forum: Automation Tools
Topic: Mass change of repository item
Replies: 3
Views: 2150

Re: Mass change of repository item

Hi,

thank you for your replay,

I did that, but i had to manually change the path of the items in the folder.

should they change automatically?
by Tnimni
Thu Aug 07, 2014 7:19 am
Forum: Automation Tools
Topic: Mass change of repository item
Replies: 3
Views: 2150

Mass change of repository item

Hi, I had 20 objects in my Repository that needed to be changed i.e. they used to be somthing like /element[@caption='1']/element[@caption='Rights']/button[@text='Ok'] problems is that i recived a new version of the applicaion and now it say "Right" insted of "Rights" obviously if i had the /element...
by Tnimni
Thu Jul 24, 2014 8:34 am
Forum: Automation Tools
Topic: Ranorex Spy Auto repository update
Replies: 3
Views: 1719

Re: Ranorex Spy Auto repository update

thank you :)
by Tnimni
Wed Jul 23, 2014 2:36 pm
Forum: Automation Tools
Topic: Ranorex Spy Auto repository update
Replies: 3
Views: 1719

Ranorex Spy Auto repository update

Hi,

When tracking an object using Ranorex spy, if my solution is open on a repository page, it will automaticlly be added to the repository.

I don't want this to happen, is there anyway to disable this feature?
by Tnimni
Wed Jul 23, 2014 11:28 am
Forum: Automation Tools
Topic: Validate SQL data during test run
Replies: 1
Views: 4140

Re: Validate SQL data during test run

Hi, You will need to write your own Code module and connect to the SQL with it. I attached a code snippet of somthing i created, My class knows how to read the Connection string from excel file, and than execute a Select command on Oracle DB. The results are returned as a data table. The reason I'm ...
by Tnimni
Wed Jul 23, 2014 11:21 am
Forum: Automation Tools
Topic: Menu is not able to capture(track)
Replies: 8
Views: 2355

Re: Menu is not able to capture(track)

Hi there, Here the problem is that Menu contains an extra title i.e. "Skrivbord - Treserva" and due the same Ranorex is not identifying the menu. Kindly refer the below screen shot and do the needful Thanks, Vasu Ranorex-Menu.png Hi there, Attached Menu is not able to track using ranorex spy, could...
by Tnimni
Wed Jul 23, 2014 11:18 am
Forum: General Questions
Topic: Ranorex Custom reporing
Replies: 4
Views: 1840

Ranorex Custom reporing

Hi, I'm now working on generating Ranorex custom report. i have encountered several issues. 1. C:\Program Files\Ranorex 5.0\Samples\CustomReportTemplate - contain RanorexReport4 files and not RanorexReport5 files. (I have Ranorex 5 installed) 2. I wanted to change some of the GUI elements, I discove...
by Tnimni
Wed Jul 23, 2014 10:56 am
Forum: General Questions
Topic: Ranorex HTML report
Replies: 2
Views: 1648

Re: Ranorex HTML report

By default, Chrome does not run active content from the local disk. You need to start Chrome with this switch: "C:\PathTo\Chrome.exe" --allow-file-access-from-files You can put this in the Chrome shortcut in the Start Menu or on your Desktop. Hi, Thanks you for the answer. after a bit of digging i ...
by Tnimni
Tue Jul 22, 2014 3:00 pm
Forum: General Questions
Topic: Ranorex HTML report
Replies: 2
Views: 1648

Ranorex HTML report

Hi,

I'm creating Ranorex HTML report instead of rxlog file for my runs.

Problem is that I can only open it in explorer it will not open in chrome.

meaning it does open in chrome but will not show the data, any suggestions?
by Tnimni
Tue Jul 22, 2014 2:58 pm
Forum: Automation Tools
Topic: Ranorex Console Application - pass in name of recording
Replies: 4
Views: 2523

Re: Ranorex Console Application - pass in name of recording

Hi The project Ranorex Console Applciation does not have a test suite within it (no *.rxtst) to run. Just wondering if there is a means to cast string to type Ranorex recording (or something similar). Thanks If you could share the code, i will understand better. I really think it's something simple...
by Tnimni
Thu Jul 17, 2014 7:07 am
Forum: General Questions
Topic: Server Monitor with the help of ranorex
Replies: 3
Views: 1503

Re: Server Monitor with the help of ranorex

PIng the server, if you get a response it's up if not it's probably down
by Tnimni
Tue Jul 15, 2014 4:16 pm
Forum: Automation Tools
Topic: Ranorex Console Application - pass in name of recording
Replies: 4
Views: 2523

Re: Ranorex Console Application - pass in name of recording

Hi, 1. You can use the following command line parameters testcase|tc:<name or guid of test case> Runs this test case only. testsuite|ts:<path to test suite file> Runs the test cases defined by the test suite (rxtst) file. 2. You can use the Ranorex Test Suite Runner, mark V on the cases you wish to ...
by Tnimni
Tue Jul 15, 2014 3:36 pm
Forum: General Questions
Topic: Ranorex seeing a button that is not visible on a web page?
Replies: 3
Views: 1672

Re: Ranorex seeing a button that is not visible on a web page?

[ Internet Explorer 10, Windows 7, Ranorex 5.0.3 ] I have a test step to verify that a button does NOT exist within a dialog box in a web application. The repository item for the button is identified as an "innertext" WebElement. The button does not appear on the web page, when the test step is run...
by Tnimni
Tue Jul 15, 2014 12:16 pm
Forum: General Questions
Topic: Add runtime information to Ranorex report
Replies: 3
Views: 1676

Re: Add runtime information to Ranorex report

try using the custom report template, lesson 8
by Tnimni
Mon Jul 14, 2014 7:26 pm
Forum: Object Identification and Technologies
Topic: Move to element which is not visible
Replies: 6
Views: 3803

Re: Move to element which is not visible

Hi, I've requirement to move to a specific element and click it. In the visible portion of a screen, 12 thumbs will be displayed. If there are more elements we need to scroll down. Now i need to write code when to scroll. I've used Ensure Visible, Visible and Exists to check the elements is present...