Search found 13 matches

by bpdyna
Fri Aug 05, 2016 8:30 am
Forum: General Questions
Topic: remote machine test execution fail
Replies: 3
Views: 1544

Re: remote machine test execution fail

Hi Mander, I ran into the same issue and looking at the error your are getting I see you have a space in your project's name. Spaces in your project's name is no longer supported since v6.0 since the Remote Agent came out, because the Remote Agent can't handle spaces in the names. Unfortunately Rano...
by bpdyna
Thu Jul 14, 2016 11:36 am
Forum: How To …
Topic: Mark iteration as success and skip therest of the recordings
Replies: 5
Views: 3048

Re: Mark iteration as success and skip therest of the recordings

Thanks for your input. You understood exactly what I am trying to do. I was hoping it could be done without moving those recordings 7-10 to a new nested testcase, but for now I am happy with this solution. I have named the child testcase "_Payment" and have put the following line in code: string Chi...
by bpdyna
Tue Jul 12, 2016 4:10 pm
Forum: How To …
Topic: Mark iteration as success and skip therest of the recordings
Replies: 5
Views: 3048

Mark iteration as success and skip therest of the recordings

Hello, I have looked through the forum for some code to solve my issue, but have not found exactly what I want to achieve. My issue I have a testcase with 10 recordings. We use a data-driven method to create iterations on this test case. Most iterations are about the "happy-flow" where you follow al...
by bpdyna
Fri Jun 10, 2016 1:54 pm
Forum: General Questions
Topic: Unable to set WaitForDocumentLoaded() Wait Duration
Replies: 10
Views: 2139

Re: Unable to set WaitForDocumentLoaded() Wait Duration

I am having this same issue. I am testing a web application that goes through a number of different pages, where each is identifiable by a unique DOM path. I use the following piece of code: public void WaitForDocumentLoaded(string TestEnvironment, string path) { WebDocument page= "/dom[@domain='" +...
by bpdyna
Fri May 20, 2016 10:40 am
Forum: Bug Reports
Topic: Mouse Cursor does not focus for 'Jump to item' in the report
Replies: 2
Views: 1913

Mouse Cursor does not focus for 'Jump to item' in the report

Since version 6.0 it seems that the mouse cursor is no longer set at the row in the user code where an error occurred after a failed test. Please see the attached screenshot for more clarification. When you press Jump to item, it will now only open the corresponding *.cs file, but it will not put th...
by bpdyna
Fri May 20, 2016 10:22 am
Forum: Bug Reports
Topic: Ranorex 6.0 - Window tabs cannot be opened after first run
Replies: 14
Views: 2774

Re: Ranorex 6.0 - Window tabs cannot be opened after first run

I have tried the following (every time with a fresh restart of Ranorex Studio as Administrator): Debug mode was turned on and I ran these pieces from the Recording, not from the Test Suite. - Run a piece of user code that failed. - Run a piece of user code that succeeds. - Run 2 simple mouse click a...
by bpdyna
Fri May 20, 2016 10:11 am
Forum: Bug Reports
Topic: Ranorex 6.0 - Window tabs cannot be opened after first run
Replies: 14
Views: 2774

Re: Ranorex 6.0 - Window tabs cannot be opened after first run

Did you try the steps that Bernhard posted? If not, please try them and see if the issue continues, then reply with the outcome. I tried re-installing again, but I had already done so before installing version 6.0 (first I completely removed the previous version, then installed 6.0). This did not s...
by bpdyna
Thu May 19, 2016 3:07 pm
Forum: Bug Reports
Topic: Ranorex 6.0 - Window tabs cannot be opened after first run
Replies: 14
Views: 2774

Re: Ranorex 6.0 - Window tabs cannot be opened after first run

I encountered the same issue today after updating to 6.0. I had been working on my solution for half a day already and suddenly this occured. The only way to switch now is with the right side arrow drop-down selection. I had already made quite some changes to my project and had run quite some tests ...
by bpdyna
Mon May 09, 2016 8:20 am
Forum: How To …
Topic: Help: User Code to execute in case test execution fails
Replies: 4
Views: 3338

Re: Help: User Code to execute in case test execution fails

Hi stapes,

That looks like a good solution and exactly what I'm looking for. I will try it out later today.
Thank you so far :)
by bpdyna
Wed May 04, 2016 1:32 pm
Forum: How To …
Topic: Help: User Code to execute in case test execution fails
Replies: 4
Views: 3338

Re: Help: User Code to execute in case test execution fails

Hi stapes, Thank you for your input, however I am still a little lost. Looking at the snippets you posted, your ValidateAndLogout seems to be the method you use to logout. Or at least, it is one of the ways you use to logout because you mention you use many smaller modules as not every logout is the...
by bpdyna
Wed May 04, 2016 10:43 am
Forum: How To …
Topic: Help: User Code to execute in case test execution fails
Replies: 4
Views: 3338

Help: User Code to execute in case test execution fails

Hello, I have tried searching the forum but have been unable to find a solution to my problem, so I'm making a new post for this. My situation: I am testing a website using different stubs, each stub has it's own login credentials. Each testcase uses it's own stub. My issue: When testcase 1 fails so...
by bpdyna
Thu Apr 14, 2016 8:15 am
Forum: General Questions
Topic: Convert to usercode without Report.Log lines
Replies: 1
Views: 1219

Re: Convert to usercode without Report.Log lines

I looked in a lot of places before posting this on the forum, but in the time it took for the topic to be approved, I already found the solution: When you select multiple actions and look at the properties of those actions, there is a property that says "Use Logging". Set that to false and there wil...
by bpdyna
Wed Apr 13, 2016 9:14 am
Forum: General Questions
Topic: Convert to usercode without Report.Log lines
Replies: 1
Views: 1219

Convert to usercode without Report.Log lines

Hi, We are using Ranorex to record actions and after that I merge/convert these actions into small re-usable blocks of user code. I then create a library which consists of these re-usable blocks and build my testcases by simply adding these 1 by 1. My team has chosen this approach in order to make i...