Search found 38 matches

by MJesper
Tue May 21, 2019 11:10 am
Forum: General Questions
Topic: Access to the path 'Thumbs.db' is denied
Replies: 7
Views: 2496

Re: Access to the path 'Thumbs.db' is denied

This seems like a good short-term solution but forcing all team members to do the same will just create a mess
by MJesper
Mon May 20, 2019 2:54 pm
Forum: General Questions
Topic: Access to the path 'Thumbs.db' is denied
Replies: 7
Views: 2496

Re: Access to the path 'Thumbs.db' is denied

You wrote in your first post that it only happens when opening the compressed report twice and it doesn't seem to happen with the standard report. What exactly is the Thumbs.db file. It is not generated by Ranorex, at least not in my reports. Probably the file is already in use by another process w...
by MJesper
Fri May 17, 2019 3:38 pm
Forum: General Questions
Topic: Access to the path 'Thumbs.db' is denied
Replies: 7
Views: 2496

Re: Access to the path 'Thumbs.db' is denied

RobinHood42 wrote:
Fri May 17, 2019 10:39 am
If it only occurs with your custom report, the reason might be your customization's.

:mrgreen:
Cheers
I haven't done anything out of the ordinary.. Just made some modifications to the XSL and modified the PNG image. It works if the report isn't compressed.
by MJesper
Wed May 15, 2019 1:20 pm
Forum: General Questions
Topic: Access to the path 'Thumbs.db' is denied
Replies: 7
Views: 2496

Access to the path 'Thumbs.db' is denied

Opening compressed ranorex reports generates a Thumbs.db in %temp%. Opening it twice will give me this error:

Code: Select all

Access to the path 'Thumbs.db' is denied
This only occurs when I use a custom Report Template
by MJesper
Fri May 10, 2019 3:23 pm
Forum: General Questions
Topic: How to hide a method from the Recorder?
Replies: 3
Views: 954

Re: How to hide a method from the Recorder?

I found that if you create a base class and extend from it and use "private" then they wont be exposed to the recorder :)
by MJesper
Fri May 10, 2019 1:02 pm
Forum: General Questions
Topic: How to hide a method from the Recorder?
Replies: 3
Views: 954

How to hide a method from the Recorder?

Hi, sometimes I want a private method in the recorder's user code class and I dont want the person using the recorder to access the method. How do I do that? Thanks
by MJesper
Tue Apr 30, 2019 3:45 pm
Forum: General Questions
Topic: Change Report.Screenshot image
Replies: 1
Views: 1119

Change Report.Screenshot image

Hi, I would like to use Report.Screenshot but modify the image that appears in the rxlog, (perhaps something like Report.Screenshot(bitmap)?)

Is there something like this in ranorex today?
by MJesper
Mon Apr 15, 2019 1:50 pm
Forum: General Questions
Topic: Exists(..) long waiting even with custom duration
Replies: 2
Views: 1210

Re: Exists(..) long waiting even with custom duration

That's what I'm doing, and from what I understand it should ignore the repository's search timeout if you put in your own value, but i'm not sure if it's doing that since it takes a very long time
by MJesper
Mon Apr 15, 2019 11:00 am
Forum: General Questions
Topic: Exists(..) long waiting even with custom duration
Replies: 2
Views: 1210

Exists(..) long waiting even with custom duration

Hi I have a custom duration for the Exists method but things still take 30+ seconds to process, why's that?, thanks

Image

Code: Select all

			if([email protected](new Duration(200)))
			{
				return false;
			}
by MJesper
Fri Apr 12, 2019 1:05 pm
Forum: General Questions
Topic: Modify HTML/JS for custom reports?
Replies: 2
Views: 1029

Re: Modify HTML/JS for custom reports?

with XSL I can't really add my own custom "HTML", I can only modify what ranorex already defined (I can only use their buttons etc)
by MJesper
Fri Apr 12, 2019 12:34 pm
Forum: General Questions
Topic: Modify HTML/JS for custom reports?
Replies: 2
Views: 1029

Modify HTML/JS for custom reports?

Hi, I'm wondering how to modify the actual html / javascript of the custom report. This is because I want to add custom features to the reporting which is currently not available (Like adding a custom button)
by MJesper
Tue Mar 26, 2019 2:08 pm
Forum: General Questions
Topic: Use ranorex remote agent with teamcity?
Replies: 1
Views: 1385

Use ranorex remote agent with teamcity?

Hi, I'm able to start a ranorex remote agent by using the /agent command line parameter from TeamCity, but whenever I stop a TeamCity build it wont stop the ranorex agent, it will continue running (if I manually stop it). What I want is some sort of communciation between the two where if I stop a Te...
by MJesper
Mon Mar 25, 2019 12:25 pm
Forum: General Questions
Topic: RepoItemInfo.Exists(..) never stops
Replies: 2
Views: 956

Re: RepoItemInfo.Exists(..) never stops

okay.. something extremely weird is happening to my elements, for some reason, this element has a 2.5 hours timeout, while in the Repository it's set to 1.5 minutes.

Image

Image
by MJesper
Mon Mar 25, 2019 11:44 am
Forum: General Questions
Topic: RepoItemInfo.Exists(..) never stops
Replies: 2
Views: 956

RepoItemInfo.Exists(..) never stops

public void WaitUntilExists(RepoItemInfo repoItemInfo) { Report.Info("before"); repoItemInfo.Exists(new Duration(1000)); Report.Success("after"); } "after" never runs, it will keep on looping forever. I only want it to wait for 1000 ms then timeout, how can I do that? (This is in the case of the el...
by MJesper
Fri Mar 22, 2019 2:17 pm
Forum: General Questions
Topic: Run TestCase and Setup from testsuite at same time?
Replies: 1
Views: 973

Run TestCase and Setup from testsuite at same time?

Hi, I want to be able to run a TestCase and always have "Setup" to run in the test suite, at the moment if you run a test case the setup in the test suite never runs. I have some required things that has to run at the start of the test suite at every test case. My current workaround is disabling eve...