Search found 15 matches

by timbuethe
Thu Jul 25, 2013 9:20 am
Forum: Automation Discussions
Topic: Hudson CI & Ranorex Reports
Replies: 13
Views: 5860

Re: Hudson CI & Ranorex Reports

I created a gist from Christian's XSLT:
https://gist.github.com/timbuethe/6077810
by timbuethe
Fri Sep 16, 2011 2:28 pm
Forum: General Questions
Topic: Reports folder always created back
Replies: 13
Views: 2247

Re: Reports folder always created back

I don't see it (see attached screenshot)
by timbuethe
Thu Sep 15, 2011 4:18 pm
Forum: General Questions
Topic: Reports folder always created back
Replies: 13
Views: 2247

Re: Reports folder always created back

Support Team wrote: you can set the report name to a fixed value in the projects properties.
Then the project file should not be modified during each test run.
I can't find it, where should it be set?
by timbuethe
Thu Sep 08, 2011 9:08 am
Forum: Automation Discussions
Topic: How to execute my test suite on my build server?
Replies: 4
Views: 5292

Re: How to execute my test suite on my build server?

Sorry I haven't updated my posting, I am some step further now. My setup is the following now: 1. I only checkin sources into SVN ignoring binaries and reports (*.rxuser, *.jpg, *.rxlog, Reports, bin, obj). See Ranorex & VCS topic . 2. I've written a NAnt build file to compile the projects 3. I set ...
by timbuethe
Wed Sep 07, 2011 1:37 pm
Forum: Automation Discussions
Topic: Ranorex projects and source control
Replies: 9
Views: 7457

Re: Ranorex projects and source control

One more item: The ".csproj" files change very often, because references to the report files are added/removed: <None Include="Reports\LampTableau20110829_142312.rxlog"> <id>344db829-8d74-4795-8efa-6971d2841785</id> </None> This is very VCS unfriendly, since every developer executes test locally.
by timbuethe
Tue Sep 06, 2011 1:34 pm
Forum: General Questions
Topic: "The module ... could not be found" when run outside Ranorex
Replies: 10
Views: 3901

Re: "The module ... could not be found" when run outside Ranorex

I sent you a mail once again. Maybe we can move this conversation to email and just post the solution here?
by timbuethe
Tue Sep 06, 2011 11:03 am
Forum: General Questions
Topic: "The module ... could not be found" when run outside Ranorex
Replies: 10
Views: 3901

Re: "The module ... could not be found" when run outside Ranorex

I just sent an email containing the whole project as well as an nant.build file we use to compile it.

EDIT:
The mail was rejected, I just resent it in three parts
by timbuethe
Tue Sep 06, 2011 10:22 am
Forum: General Questions
Topic: "The module ... could not be found" when run outside Ranorex
Replies: 10
Views: 3901

"The module ... could not be found" when run outside Ranorex

Hi, I have the following problem: We use NAnt & Hudson/Jenkins to compile and run Ranorex tests automatically. When doing so, some modules aren't executed and the following error message is printed: The module 'SomeModuleName' (with ID {b22cf739-754d-4bfe-9e52-cb893fb95791}) could not be found. I ch...
by timbuethe
Mon Sep 05, 2011 3:59 pm
Forum: Automation Discussions
Topic: Hudson CI & Ranorex Reports
Replies: 13
Views: 5860

Re: Hudson CI & Ranorex Reports

@chfischer: would you mind to share your xslt?
by timbuethe
Mon Sep 05, 2011 1:57 pm
Forum: General Questions
Topic: JavaScript confirm in Firefox 6
Replies: 5
Views: 2867

Re: JavaScript confirm in Firefox 6

The weird thing is this: When I click "highlight", the button is found and gets highlighted. But while executing the test, it isn't found and a timeout occurs. This is because Ranorex takes too long to find the button, if you increase the search timeout there shouldn't be a problem. Well, when I us...
by timbuethe
Mon Sep 05, 2011 10:20 am
Forum: Automation Discussions
Topic: Ranorex projects and source control
Replies: 9
Views: 7457

Ranorex projects and source control

Hi, we working with Ranorex and SVN, with three to five developers at the time, and have a hard time managing the project under version control. To prevent conflicts, we ignored (svn:ignore) binaries as well as reports along with their screenshots: [*] Reports [*] bin [*] obj [*] *.jpg [*] *.rxlog A...
by timbuethe
Mon Sep 05, 2011 9:58 am
Forum: General Questions
Topic: JavaScript confirm in Firefox 6
Replies: 5
Views: 2867

Re: JavaScript confirm in Firefox 6

We tried to make the XPath expressions as general as possible. We addressed the OK button like this:
/form//button[@accessiblename='OK']
The weird thing is this: When I click "highlight", the button is found and gets highlighted. But while executing the test, it isn't found and a timeout occurs.
by timbuethe
Wed Aug 31, 2011 2:15 pm
Forum: General Questions
Topic: JavaScript confirm in Firefox 6
Replies: 5
Views: 2867

JavaScript confirm in Firefox 6

We recently updated to Ranorex 3.1 and Firefox 6. It's great that the add-on now supports FF 4,5 and 6 and we can use a modern browser to run our tests. However, we experience problems with JavaScript dialogs like alert and confirm when using FF6. The dialog and the contained buttons are not found b...
by timbuethe
Tue Aug 23, 2011 1:28 pm
Forum: Automation Discussions
Topic: How to execute my test suite on my build server?
Replies: 4
Views: 5292

Re: How to execute my test suite on my build server?

Hi, thanks for sharing your experience. - We have separate Ranorex solutions which share one project (which holds the repositories, functions & code modules). Do you mean, you have different .rxsln files and switch between them when using Ranorex Studio? - We build the projects in a single Jenkins j...
by timbuethe
Mon Aug 22, 2011 2:14 pm
Forum: Automation Discussions
Topic: How to execute my test suite on my build server?
Replies: 4
Views: 5292

How to execute my test suite on my build server?

Hi, I've tested ranorex for some days now, created "MyTest", recorded some trivial tests and executed them successfully. I've then used the "MyTest.exe" to execute the tests at night on my Hudson build server. No problems so far. Now the solution grew into multiple projects with a lot of modules and...