Search found 22 matches

by zero
Thu Feb 11, 2016 4:48 pm
Forum: General Questions
Topic: How to assign repositores on a project level
Replies: 3
Views: 1298

Re: How to assign repositores on a project level

Hello Johannes,

so setting the default repository will only affect new modules, not the existing ones?

Thanks for your quick answer!
by zero
Wed Feb 10, 2016 3:55 pm
Forum: General Questions
Topic: How to assign repositores on a project level
Replies: 3
Views: 1298

How to assign repositores on a project level

We plan to keep more than one repo for different browsers and different versions of our AUT. Now, as far as I understood, you have to step through each recording module and change the repository explicitly if you want to use e.g. the internet explorer repo instead of the firefox repo. Can I assign a...
by zero
Thu Apr 16, 2015 5:15 pm
Forum: General Questions
Topic: We are facing issues to identify the iFrame objects in Googl
Replies: 14
Views: 3443

Re: We are facing issues to identify the iFrame objects in Googl

That's what I did and that's why I changed the source html holding the frame. Thanks for your help!
by zero
Thu Apr 16, 2015 10:52 am
Forum: General Questions
Topic: We are facing issues to identify the iFrame objects in Googl
Replies: 14
Views: 3443

Re: We are facing issues to identify the iFrame objects in Googl

I think I solved my issue. I stripped everything from the HTML file holding the iframe, since I don't need it anyway. Now it works. My HTML looks like this: <!DOCTYPE html> <html> <head></head> <body> <iframe src="http://SUT.html" style="margin: 0px 0px 0px 10px; width: 750px; height: 600px;"></ifra...
by zero
Thu Apr 16, 2015 10:41 am
Forum: General Questions
Topic: We are facing issues to identify the iFrame objects in Googl
Replies: 14
Views: 3443

Re: We are facing issues to identify the iFrame objects in Googl

Thank you krstcs, the //iframe was inside the path. It works in Firefox, but it won't in Chrome. I checked the DOM in Firebug and with the Chrome Debugger. In Firefox it looks like this: <iframe ...> <!DOCTYPE html> In Chrome it looks like this: <iframe ...> #document <!DOCTYPE html> I don't know if...
by zero
Wed Apr 15, 2015 6:45 pm
Forum: General Questions
Topic: We are facing issues to identify the iFrame objects in Googl
Replies: 14
Views: 3443

Re: We are facing issues to identify the iFrame objects in Googl

Same problem here. We can't identify objects in iframes with latest Chrome and Ranorex 5.3. Our html file is a local one (file:///C:\application.html) and is loading the AUT inside the iframe. I also checked the add-on checkbox "Allow access to file URLs" in the Chrome extension page for the Ranorex...
by zero
Tue Jun 10, 2014 1:17 pm
Forum: Object Identification and Technologies
Topic: Same repository for different Base path urls
Replies: 2
Views: 2740

Re: Same repository for different Base path urls

I don't know, if I understood your problem. Do you want to change the base url or the path ? If so, you can make either of these variable in your repository. Simply create a variable called "myBasePath" in the repository and initialize it in your code module by using something like this: repo.myBase...
by zero
Mon May 19, 2014 9:45 am
Forum: Automation API
Topic: OptionTag not found in SelectTag although it is there
Replies: 2
Views: 2099

Re: OptionTag not found in SelectTag although it is there

That did it! :D Thank you Markus!

Roman
by zero
Wed May 14, 2014 10:36 am
Forum: Automation API
Topic: OptionTag not found in SelectTag although it is there
Replies: 2
Views: 2099

OptionTag not found in SelectTag although it is there

I want to check a HTML select list if it contains certain elements and check their index in the list (the order in which they appear to the user). Unfortunately, the element that I am searching for is not found, although it is clearly in the list. Why is this? I debugged the code and checked the val...
by zero
Wed May 07, 2014 6:18 pm
Forum: General Questions
Topic: Test data store
Replies: 6
Views: 2476

Re: Test data store

I solved this problem by creating a singleton class that takes all my objects. This class can be accessed across all testcases.
by zero
Wed May 07, 2014 7:51 am
Forum: General Questions
Topic: Test data store
Replies: 6
Views: 2476

Re: Test data store

Hi,

I am also in the need for a similar feature like this. I want to create global testcase objects (Note: real objects not key/value pairs) that can be accessed in any testcase step. Any suggestions on how I could do that?
by zero
Tue Mar 04, 2014 7:05 pm
Forum: Automation API
Topic: How to save a file to report directory
Replies: 8
Views: 6371

Re: How to save a file to report directory

That's it! :D

Thanks a lot!!

Regards,
Roman
by zero
Mon Mar 03, 2014 10:00 am
Forum: Automation API
Topic: How to save a file to report directory
Replies: 8
Views: 6371

Re: How to save a file to report directory

Hello Robert, thanks a lot for your effort! But unfortunately this is still not the solution I am searching for :-( In your example the file is moved to the directory "<MyProject>\bin\Debug", since that is what Ranorex.Core.Reporting.TestReport.ReportEnvironment.ReportFileDirectory delivers. But I w...
by zero
Wed Feb 26, 2014 5:30 pm
Forum: Automation API
Topic: How to save a file to report directory
Replies: 8
Views: 6371

Re: How to save a file to report directory

Thank you Robert, but that was not what I was searching for. Saving a test case specific file to the general (output folder for all test case data) "Reports" folder is not what I want. Instead, the file should be saved in the test case specific report folder, e.g. images_<MyProject>_20140226_161818 ...
by zero
Mon Feb 24, 2014 5:57 pm
Forum: Automation Tools
Topic: How can I test with different versions of Internet Explorer?
Replies: 14
Views: 3630

Re: How can I test with different versions of Internet Explorer?

Thanks, that did answer my question! :D