Search found 357 matches

by atom
Thu Jul 04, 2013 6:04 pm
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

Uploaded a Notepad example too... and a few additional keywords regarding child windows and dialogs.
by atom
Wed Jul 03, 2013 11:05 pm
Forum: General Questions
Topic: How to identify DevExpress Controls using Ranorex
Replies: 5
Views: 2672

Re: How to identify DevExpress Controls using Ranorex

Hi Ciege,

Do you have any dev express helper classes?
Specificly for Tree, Grids and TreeGrids..

Thanks.
by atom
Wed Jul 03, 2013 2:08 pm
Forum: Automation Discussions
Topic: Integrate Ranorex with QA Complete
Replies: 1
Views: 2694

Re: Integrate Ranorex with QA Complete

Hiya.

How have you developed your ranorex tests?
As .exe or using NUnit etc...

Probably best way would be to make your test output some file that givesthe test id, test result etc.
Then develop a small exe to bulk process those files calling test complete api

Cheers.
by atom
Tue Jul 02, 2013 3:06 pm
Forum: Automation API
Topic: Options for Ranorex Reports
Replies: 3
Views: 2001

Re: Options for Ranorex Reports

Hiya,

I meant really at API level rather than Ranorex Studio.

Cheers.
by atom
Tue Jul 02, 2013 1:49 pm
Forum: Automation API
Topic: By class for element location
Replies: 1
Views: 2111

By class for element location

Hello.

I was wondering if anyone has wrapped the Find methods to have something similar to the By class in selenium. e.g.

Form.Find<Ranorex.Text>(By.Id("105"))
Form.Find<Ranorex.Button>(By.Text("OK"))

where say:
By.Id("105") expands to xpath string descendant::element[@id="105"]

Cheers.
by atom
Tue Jul 02, 2013 1:35 pm
Forum: Automation API
Topic: PopupWatcher in Ranorex 4 - problem with repo items
Replies: 8
Views: 4061

Re: PopupWatcher in Ranorex 4 - problem with repo items

To me popup watchers are a working around an issue... If you get an unexpected dialog IMHO its better to let your test fail. If you close an unexpected dialog and attempt to continue with the test, your just masking a problem, and more often or not your test will fail for some other reason, making i...
by atom
Tue Jul 02, 2013 11:30 am
Forum: Automation Discussions
Topic: Ranorex vs QTP
Replies: 12
Views: 16711

Re: Ranorex vs QTP

As a consultant I worked on a project to "sort out" a set of QTP tests and a Excel based QTP framework that had taken over two years to develop, and eventually wasn't being used at all. In the end I was able to completely rewrite and enhance their testing using Robot Framework and Selenium in Java i...
by atom
Tue Jul 02, 2013 11:02 am
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

Hello. I've made a start on the ranorex.robot keyword library see: https://code.google.com/p/ranorex-robot-library/ At the moment there are only keywords for: - Application start, stop - Button - Text Basically just enough to do the usual Calculator example. The Calculator example is available on go...
by atom
Tue Jul 02, 2013 10:21 am
Forum: Automation API
Topic: Options for Ranorex Reports
Replies: 3
Views: 2001

Options for Ranorex Reports

Hiya,

Can you please tell me how to:

1. Tell Ranorex not to produce any report(s) files. i.e. Turn off the report file generation, writing of xsl file etc.

2. Tell Ranorex not to output warning messages to Console or Trace (if possible)

Thanks.
by atom
Fri Jun 07, 2013 6:36 pm
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

Hi. The first stage of integrating Ranorex and Robot Framework was to re-design the .net robot remote server. I found that : http://code.google.com/p/sharprobotremoteserver/ Wasn't written well. So i've re-written it as a new project called NRobotRemote. Code will be up in a few days time, but the d...
by atom
Tue Jun 04, 2013 2:21 pm
Forum: General Questions
Topic: Finding Adapter for an Element
Replies: 2
Views: 4727

Re: Finding Adapter for an Element

Thanks!
Was looking for some old documentation called "Using the element method" that i seem to remember from a version 2! But couldnt find it...
by atom
Tue Jun 04, 2013 2:06 pm
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

BTW if not using IronPython, but VB/C# you can use:

http://code.google.com/p/sharprobotremoteserver/

However theres several limitations with the above, naming it only is capable of loading one keyword class.
I'm currently writing my own robot remote server :-)
by atom
Tue Jun 04, 2013 2:02 pm
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

The only question that may arise from above is what xpaths does a keyword need
Simple... its always relative to the active window!
The keyword wrappers first find the active window
by atom
Tue Jun 04, 2013 1:59 pm
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

Hiya. Sounds good. What i was planning is more generic, in that they keywords would be wrappers around Ranorex API. e.g. a Keyword could be: TEXTBOX SETVALUE <xpath> <value> BUTTON CLICK <xpath> What can then be done in RF is to build keywords on top of these, so that you can model the application i...
by atom
Fri May 31, 2013 10:36 am
Forum: Automation Discussions
Topic: Ranorex integration with Robot Framework?
Replies: 15
Views: 12195

Re: Ranorex integration with Robot Framework?

project is started... (no code as yet)
http://code.google.com/p/ranorex-robot-library/

watch this space...