Search found 3 matches

by carlovandriel
Thu Mar 19, 2015 1:01 pm
Forum: General Questions
Topic: How to execute a module only on error
Replies: 1
Views: 1583

Re: How to execute a module only on error

I managed to solve it: - convert the step in my recording that i only want to run on a fail to UserCode - put the module in the teardown so it runs even on fail of the testcase The UserCode i used: var tc = TestCase.Current; if(tc.Status == Ranorex.Core.Reporting.ActivityStatus.Failed) { my code to ...
by carlovandriel
Wed Mar 18, 2015 1:32 pm
Forum: General Questions
Topic: How to execute a module only on error
Replies: 1
Views: 1583

How to execute a module only on error

Hi, I have a testsuite with 3 testcases. The error handling is set to 'continue with parent' as i like all testcases to run even if 1 fails. This works fine. I have also build in a module in each testcase to update our Jira user-story that is reflected by that testcase with 'passed'. This way we hav...
by carlovandriel
Wed Feb 04, 2015 4:58 pm
Forum: General Questions
Topic: Test webapplication in Chrome on iPad/Android tablet
Replies: 1
Views: 1738

Test webapplication in Chrome on iPad/Android tablet

We have a script that runs on 4 different browsers on desktop. We also support tablets (not an app, but in the browser). Is there a way to connect the tablets and run the same script on Safari and Chrome on an iPad and on Chrome on a Android tablet?
If not: are there future plans to support this?