Search found 56 matches

by JSH_QA
Sat Aug 15, 2015 9:56 am
Forum: General Questions
Topic: Windows Support
Replies: 3
Views: 1637

Re: Windows Support

Thanks Pavel.

Can anybody from Ranorex provide any timescales for WinPhone support (whether 8.0, 8.1 or 10) please?

Thanks,

John H.
by JSH_QA
Mon Jul 27, 2015 4:19 pm
Forum: General Questions
Topic: Windows Support
Replies: 3
Views: 1637

Windows Support

Could anybody confirm please whether Ranorex currently supports the following platforms, or if not, if there is a target date for doing so? WinPhone 8.0 WinPhone 8.1 Windows 8.x desktop Metro-style apps Windows 10 (currently in preview) I am building an app using Xamarin.Forms that works on Android,...
by JSH_QA
Thu Dec 11, 2014 10:52 am
Forum: Object Identification and Technologies
Topic: Not finding class when using Angular and Bootstrap
Replies: 3
Views: 2218

Re: Not finding class when using Angular and Bootstrap

The path that was originally being used was as follows: "./div[@class~'wrapper-content']//div[@id='tabColumn']/div[@class~'dashboard-header']/div[@class~'panel']//ul[@class~'nav-tabs']/li[@id='outputTab']"; That failed, but as soon as the [@class~'nav-tabs'] was removed, it then worked. Other paths ...
by JSH_QA
Wed Dec 10, 2014 3:53 pm
Forum: Object Identification and Technologies
Topic: Not finding class when using Angular and Bootstrap
Replies: 3
Views: 2218

Not finding class when using Angular and Bootstrap

We are encountering a situation where our test code (C# + Ranorex API, using 5.2.1) is failing to find an object that is clearly visible using Ranorex Spy, or the F12 Developer Tools in browsers. In the attached screenshot of Ranorex Spy, we are trying to find the ATag 'Output' circled at the bottom...
by JSH_QA
Wed Dec 10, 2014 2:16 pm
Forum: Automation API
Topic: Impersonate User with RunApplication?
Replies: 7
Views: 4986

Re: Impersonate User with RunApplication?

Unfortunately, it seems that the RxPaths that we use when running as ourselves, do not work when we run the application under test as a different user. From initial investigation, it seems that the test process that uses the Ranorex libraries has to be running as the same user as the Application Und...
by JSH_QA
Fri Dec 05, 2014 4:26 pm
Forum: Automation API
Topic: Identifying an unexpected GUI control with the focus
Replies: 2
Views: 2042

Re: Identifying an unexpected GUI control with the focus

Brilliant - that will do it.

Many thanks,

John H.
by JSH_QA
Thu Dec 04, 2014 5:33 pm
Forum: Automation API
Topic: Identifying an unexpected GUI control with the focus
Replies: 2
Views: 2042

Identifying an unexpected GUI control with the focus

Normally, we know which control we expect to have the focus at any time, and hence can Find it and get an Element and/or Adapter for it. Being able to direct mouse actions and key strokes to specific controls should ideally mean that we always have control of where the focus is. However, when the ap...
by JSH_QA
Wed Nov 26, 2014 4:52 pm
Forum: Automation API
Topic: Today's Date Validation?
Replies: 3
Views: 3178

Re: Today's Date Validation?

Just be careful not to run your tests around midnight (e.g. from an automated overnight build system) :)
by JSH_QA
Mon Nov 24, 2014 4:49 pm
Forum: Automation Discussions
Topic: Some Adapter.Click Methods Open IE ContextMenu
Replies: 9
Views: 3505

Re: Some Adapter.Click Methods Open IE ContextMenu

Thanks Markus, Yes, wherever possible our code allows us to run our test suite using either mouse or keyboard or touch or invoke action, based upon configuration. There are places where there is no invoke action equivalent (e.g. right-clicking on a System Tray button), but for most things we can con...
by JSH_QA
Mon Nov 24, 2014 11:35 am
Forum: Automation API
Topic: Ranorex does not hit controls sporadically
Replies: 8
Views: 4967

Re: Ranorex does not hit controls sporadically

Hi Shannon, You might want to look at the thread at http://www.ranorex.com/forum/some-adapter-click-methods-open-ie-contextmenu-t7013.html The mouse pointer moving to the top-left can result from state changing in the Application Under Test (AUT)between the point that the Ranorex script does a Find ...
by JSH_QA
Fri Nov 21, 2014 3:06 pm
Forum: Automation Discussions
Topic: Some Adapter.Click Methods Open IE ContextMenu
Replies: 9
Views: 3505

Re: Some Adapter.Click Methods Open IE ContextMenu

Hi Markus, Unfortunately, the workaround in this particular scenario can only be used in a small number of cases, but the general principle is reusable. The general principle is: Basically, what the automated test needs to do is to avoid interacting with a control that may change state between the p...
by JSH_QA
Thu Nov 20, 2014 8:29 pm
Forum: Automation Discussions
Topic: Some Adapter.Click Methods Open IE ContextMenu
Replies: 9
Views: 3505

Re: Some Adapter.Click Methods Open IE ContextMenu

We saw another example of this today, with a related, but slightly different scenario. The scenario seen today is as follows: The application under test (AUT) contains an edit box As the user types into the edit box, the application tries to implement auto-complete. When it finds one or more matches...
by JSH_QA
Tue Nov 11, 2014 3:00 pm
Forum: Automation API
Topic: Keyboard.AbortKey and System.AppDomainUnloadedExcepti
Replies: 10
Views: 3381

Re: Keyboard.AbortKey and System.AppDomainUnloadedExcepti

Hi Markus, Thanks for your response. Using the Threads window when debugging in Visual Studio, I see that the following three threads are started when I set Keyboard.AbortKey: Ranorex.Core.dll!Ranorex.Core.InputDispatcher.DispatcherThread Ranorex.Core.dll!Ranorex.Core.InputDispatcher.RegeneratorThre...
by JSH_QA
Wed Nov 05, 2014 3:32 pm
Forum: Automation API
Topic: Keyboard.AbortKey and System.AppDomainUnloadedExcepti
Replies: 10
Views: 3381

Re: Keyboard.AbortKey and System.AppDomainUnloadedExcepti

Hi Markus, Here you go. The following results in the error appearing, using 5.1.1.18898: using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DemoOfExceptionForRanorex { [TestClass] public class UnitTest1 { [TestMethod] public void TestMethod1() { Ranorex.Keyboard.AbortKey = System.Windows....
by JSH_QA
Wed Nov 05, 2014 3:23 pm
Forum: Automation API
Topic: Keyboard.AbortKey and System.AppDomainUnloadedExcepti
Replies: 10
Views: 3381

Re: Keyboard.AbortKey and System.AppDomainUnloadedExcepti

Hi Markus,

Whilst we do normally have a PopupWatcher in use, we still see this exception being reported if the PopupWatcher code is completely removed.

I'll put together a small piece of code to demo the problem.

Thanks,

John H