Search found 7 matches

by borisveis
Thu Mar 13, 2014 12:30 am
Forum: Automation API
Topic: PopupWatcher not running when executed from Command line
Replies: 5
Views: 2170

Re: PopupWatcher not running when executed from Command line

Robert, The SETUP is not in the test case section. It's in the Test Suite and I would expect it to mimic the behavior of Ranorex Studio. That said, based on my use case, I really didn't need the SETUP to be global to all test cases, only one specifically. Your suggestion to move it to the SETUP sect...
by borisveis
Mon Mar 10, 2014 9:56 pm
Forum: Automation API
Topic: PopupWatcher not running when executed from Command line
Replies: 5
Views: 2170

Re: PopupWatcher not running when executed from Command line

I'm using Ranorex Studio 4.1.5.17134. I installed the same package (without the Studio) in the runtime machine. To repro, can you try to have two or more test cases with a setup function (see my screenshot in original post). Then, try to run the test cases separately and see if the watcher gets trig...
by borisveis
Thu Mar 06, 2014 8:22 pm
Forum: Automation API
Topic: PopupWatcher not running when executed from Command line
Replies: 5
Views: 2170

PopupWatcher not running when executed from Command line

I have a watcher usercode module which watches for a warning from the browser regarding self signed certificates. If a cert warning appears, the watcher will click through the various buttons to accept the self-signed cert and move on. I've placed this code module in [SETUP] section of the test suit...
by borisveis
Thu Mar 06, 2014 12:59 am
Forum: Object Identification and Technologies
Topic: Image recognition failing after upgrade to 4.1.5
Replies: 1
Views: 1964

Re: Image recognition failing after upgrade to 4.1.5

I think the issue was the resolution of the virtual machine screen. The images was clearly visible in the screen, but I increased the resolution anyways. Now it works.

There's was probably some part of the border that was missing causing the image to no be recognizable.
by borisveis
Wed Mar 05, 2014 10:11 pm
Forum: Object Identification and Technologies
Topic: Image recognition failing after upgrade to 4.1.5
Replies: 1
Views: 1964

Image recognition failing after upgrade to 4.1.5

As part of our product deployment, we have to interact with a VM console in VMware vSphere client. We've used image recognition (e.g., checking for a login prompt) before typing username/passwd or other CLI commands. Up until recently, Ranorex was handling this just fine. After upgrading to 4.1.5, t...
by borisveis
Thu Nov 21, 2013 2:39 am
Forum: Automation API
Topic: Using PopupWatcher to accept browser ssl certificates
Replies: 9
Views: 5349

Re: Using PopupWatcher to accept browser ssl certificates

I tried several suggested solutions. One thing I didn't see on any forum or docs is that the watcher can watch for multiple items. Once I found this, I registered both the IE and FF objects to look for, each reflecting to a different method (note FF vs IE in AccertCertXX) PopupWatcher sslPopupWatche...
by borisveis
Tue Nov 12, 2013 3:32 am
Forum: Automation API
Topic: Using PopupWatcher to accept browser ssl certificates
Replies: 9
Views: 5349

Using PopupWatcher to accept browser ssl certificates

//code here I would like to use the PopupWatcher to always accept certificates presented in a browser. Though, I'll need to do it for IE, FF, and Chrome, I'm just trying to get Firefox working and then the other two. Another thing I should mention is that I come from Java land and have limited expo...