Search found 10 matches

by agiletestware
Wed Sep 19, 2012 11:45 am
Forum: General Questions
Topic: cannot add dll to project
Replies: 1
Views: 3349

cannot add dll to project

Hello, I am trying to add my own dll to one of the sample ranorex sample project. however, upon compile I get 1 warning and 1 error Resolved file has a bad image, no metadata, or is otherwise inaccessible. Could not load file or assembly 'C:\downloads\foo.dll' or one of its dependencies. This assemb...
by agiletestware
Fri Sep 14, 2012 5:22 am
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

Re: print test case status and failure message in teardown

hello, Since this feature was not delivered in 3.3, do you know if it is being done in the next release? Just need to be able to see how to print testcase name, status, assert messages (for failing tests) I am not really sure the example below with the testmodule prints out testcase status, failure ...
by agiletestware
Wed Jun 06, 2012 11:13 pm
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

Re: print test case status and failure message in teardown

Hi Peter,
Do you know if this is now possible in the 3.3 release?
I did not see anything in the 3.3 release notes

Thanks
by agiletestware
Mon Apr 09, 2012 10:55 pm
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

Re: print test case status and failure message in teardown

Hello Peter,
Any update on when this will be available ?

Thanks

Ali
by agiletestware
Mon Jan 09, 2012 5:25 pm
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

Re: print test case status and failure message in teardown

What is the tentative release date for 3.3 ?
by agiletestware
Mon Jan 09, 2012 9:08 am
Forum: General Questions
Topic: using Ranorex command line interface
Replies: 3
Views: 5674

Re: using Ranorex command line interface

Hi Martin, I don't think you answered my question. Based on the documentation, I think this should work C:\Program Files\Ranorex 3.2\Bin>Ranorex.TestSuiteRunner.exe ts:"C:\Documents an d Settings\Administrator\My Documents\Ranorex\RanorexStudio Projects\Samples\Win Forms Test"\ rf:C:\test\reportname...
by agiletestware
Fri Jan 06, 2012 5:14 pm
Forum: General Questions
Topic: using Ranorex command line interface
Replies: 3
Views: 5674

using Ranorex command line interface

Hello, I am trying to run the sample project via command line and seems to be doing wrong as the tests are not running. C:\Program Files\Ranorex 3.2\Bin>Ranorex.TestSuiteRunner.exe ts:"C:\Documents an d Settings\Administrator\My Documents\Ranorex\RanorexStudio Projects\Samples\Win Forms Test"\ rf:C:...
by agiletestware
Fri Jan 06, 2012 4:34 pm
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

Re: print test case status and failure message in teardown

Hello Markus,
Do you have a date when this will be available. The last two releases do not have this feature (per the release notes)
http://www.ranorex.com/download/release ... html#c3788

Thanks
by agiletestware
Tue Dec 06, 2011 4:47 pm
Forum: General Questions
Topic: report rxlog XML schema
Replies: 3
Views: 1836

report rxlog XML schema

Hello, I am trying to do some post processing of the rxlog file that is generated after a test run. I tried running the sample VIPTestSuite project and basically I see that the structure of the xml report is <activity> <activity testsuitename='suite1'> <activity testcasename='test01'> <activity test...
by agiletestware
Tue Dec 06, 2011 12:24 pm
Forum: Automation API
Topic: print test case status and failure message in teardown
Replies: 16
Views: 8697

print test case status and failure message in teardown

Hello,
How can I print the test case status and failure message/exception (if test failed) in the teardown script ?
Looking to just do something like

console.writeline("status:" + test.status)
if(test.status.failed)
console.write ("message: " + test.failuremessage)

Thanks