Search found 74 matches

by CookieMonster
Thu May 05, 2016 11:31 am
Forum: General Questions
Topic: Does ranorex support windows app with awesomium
Replies: 11
Views: 3024

Re: Does ranorex support windows app with somium

Hi,

Did you activate the Ranorex Plugin in your embedded Chrome? Like you activate any plugin in chrome, you should be able to activate the Ranorex Plugin.

Btw: what is somium? :roll:

Regards
Dan
by CookieMonster
Wed May 04, 2016 3:23 pm
Forum: General Questions
Topic: Whole site validation
Replies: 3
Views: 1208

Re: Whole site validation

Ok, now I got it! To be honest this kind of test doesn't really makes sense to me. In our tests the look and feel has less priority than the functional aspect. What I would do first, I would make sure that the page you created does still full fill the use cases of your costumer. Let take a very simp...
by CookieMonster
Wed May 04, 2016 1:18 pm
Forum: General Questions
Topic: Whole site validation
Replies: 3
Views: 1208

Re: Whole site validation

Hi Kaalell, Why are you not saving the HTML Page therefore you can use the DOM Element of Ranorex and create a snapshot or just save the GetHtml as text in a file and compare the files automatically, with a diff result? Use the API of DiffTool and then you can integrate this in Ranorex Studio if you...
by CookieMonster
Mon Jan 04, 2016 3:49 pm
Forum: General Questions
Topic: Mouse pointer freezes when recording
Replies: 6
Views: 2518

Re: Mouse pointer freezes when recording

Hi mbarfiel, I made some tests with Ranorex 5.4.1 and 5.4.2. With 5.4.1 I had absolutely no problem, but 5.4.2 I had no hanging mouse but a extremely long timeouts between 5-10 second, but only on Flash everything else worked fine. Due to that my knowledge is poor on Flash automation, it may could b...
by CookieMonster
Wed Dec 30, 2015 10:47 am
Forum: General Questions
Topic: Mouse pointer freezes when recording
Replies: 6
Views: 2518

Re: Mouse pointer freezes when recording

Hi mbarfiel,

What kind of application are you going to automate or are you trying to automate Windows 7?If an application we need to know the technology behind. And may the steps you are trying to automate, it would be helpful to reproduce it, of course if possible :).

Regards
Dan
by CookieMonster
Fri Oct 23, 2015 1:01 pm
Forum: General Questions
Topic: Test reports through email
Replies: 31
Views: 6034

Re: Test reports through email

Hi,

May you should call the SendMail usercode module. In your test suite you are not calling the SendMail or even not in the recording.
May this is your problem.

Cheers
Dan
by CookieMonster
Tue Oct 06, 2015 1:51 pm
Forum: How To …
Topic: If Statements
Replies: 2
Views: 4193

Re: If Statements

Hi Hammad, we are handling Radiobutton, Checkboxes with the following approach. We pass a boolean, if the checkbox has to be selected or not. That means if you want that checkbox is selected you pass true. So if your checkbox is already set, then noting happens otherwise the checkbox will be selecte...
by CookieMonster
Mon Sep 14, 2015 2:44 pm
Forum: General Questions
Topic: Warning during compile
Replies: 1
Views: 2012

Re: Warning during compile

Hi,

Just remove the old references and re add them (the new once of course). This should solve the problem, because your project file has some old references, and you are using an newer version of Ranorex.

Regards
Dan
by CookieMonster
Mon Sep 14, 2015 2:13 pm
Forum: General Questions
Topic: Can Ranorex be integrable with Cucumber?
Replies: 2
Views: 3774

Re: Can Ranorex be integrable with Cucumber?

Hi Stein, I think over the Ranorex API it should be feasible, may also in the studio over user code, for e.g. may you can use Specflow.net for it. But til today I'm not convinced about GUI test case written in Gherkin Style, I'm still searching for a advantage. I'm still following the rule, that a m...
by CookieMonster
Mon Sep 14, 2015 1:54 pm
Forum: Automation API
Topic: use external dll (C++) or jar (java) with ranorex
Replies: 3
Views: 3115

Re: use external dll (C++) or jar (java) with ranorex

Hi , I'm not completely agree with odklizec, to add the the C++ dll over add reference to a C# or VB project, but I'm speaking about unmanaged C++ dll. The most of the time you have to add something like below at your class. [DllImport("myCPlusPlus.dll")] internal extern static int Authenticate(stri...
by CookieMonster
Tue Aug 18, 2015 7:47 am
Forum: Automation Discussions
Topic: Unable to extract the values from Table of an desktop applic
Replies: 2
Views: 2703

Re: Unable to extract the values from Table of an desktop applic

Hi Kathir, Could you please provide a bit more information if possible. What kind of desktop application you are trying to automate. Java. .Net with third party components, if yes, is it DevExpress or Component one or something else. Also the operating system would be useful and may also a Spy Snaps...
by CookieMonster
Fri Aug 07, 2015 7:17 am
Forum: General Questions
Topic: Object reference not set to an instance of an object
Replies: 1
Views: 1464

Re: Object reference not set to an instance of an object

Hi subodh4u7,

It's hard to say what exactly is throwing the exception, because I don't know your code. But you can try to debug the method, RepoScanConsole.CommandPropt.Activate(), and figure it which object is not set.

Regards
Dan
by CookieMonster
Thu Aug 06, 2015 8:43 am
Forum: Automation Tools
Topic: "BodyWrapper" Error
Replies: 5
Views: 2050

Re: "BodyWrapper" Error

Hi agategroup,

Cloud you please post the XPath of the failing element and if possible the report log of error messages. May you have a wrong XPath in the repository and therefore the element can't be found.

Regards
Dan
by CookieMonster
Wed Jul 29, 2015 12:47 pm
Forum: General Questions
Topic: Attaching to a browser
Replies: 2
Views: 1238

Re: Attaching to a browser

Hi Sudeepto,

For e.g. what you can do is:
Use a Ranorex XPath on your repository item /dom[@domain~'myDomain' and ChildIndex='0']
or use the Host.Local.Find() method over a UserCode Module.

Regards
Dan
by CookieMonster
Tue Jul 28, 2015 8:13 am
Forum: General Questions
Topic: Closing Internet Explorer 11 troubles
Replies: 2
Views: 2070

Re: Closing Internet Explorer 11 troubles

Hi Nico,

Why are you not using the OpenBrowser Method to close the Browser? For me this works perfectly.

For e.g. like:

Host.Local.OpenBrowser(url, browserType,string.Empty, closeAllOpenBrowsers, true);

But therefore you have to create a method in the user code.

Regards
Dan