Search found 10 matches

by mtaylor
Fri Oct 14, 2016 4:23 pm
Forum: General Questions
Topic: Passing varible values into repository variables
Replies: 1
Views: 2392

Passing varible values into repository variables

Right now there seems to be no way to pass a value into a variable in the repository except by the default value method...is this true like what if I wanted to have a dynamic variable for my base dom path Path -> Base: /dome[@domain=$Hostname] is really the only way to pass the $hostname into this i...
by mtaylor
Wed Jun 22, 2016 12:40 am
Forum: General Questions
Topic: Ranorex Test Runner Freezing in VM
Replies: 5
Views: 1794

Re: Ranorex Test Runner Freezing in VM

Try this in the program.cs file under the test case or test suite uncomment the code var osName = Host.Local.OSEdition.ToString(); if(osName.Contains("Windows 10") || osName.Contains("Windows 8")) { if (Util.IsRestartRequiredForWinAppAccess) return Util.RestartWithUiAccess(); }
by mtaylor
Tue Apr 26, 2016 5:21 pm
Forum: Bug Reports
Topic: Ranorex occasionally freezes with TFS project
Replies: 20
Views: 7377

Re: Ranorex occasionally freezes with TFS project

I'm having the same issues with my project freezing and I'm getting these Debug lines in my Logfile...the same thing for me: 2015-03-20 09:45:01.4914|DEBUG|Ranorex.Core.DualModeNetFactory|Will create dual mode TCP client. 2015-03-20 09:46:01.4984|DEBUG|Ranorex.Core.DualModeNetFactory|Will create dua...
by mtaylor
Thu Apr 07, 2016 6:45 pm
Forum: General Questions
Topic: Ranorex Test Runner Freezing in VM
Replies: 5
Views: 1794

Ranorex Test Runner Freezing in VM

Well, I hope someone out there can help me. I originally was on VirtualBox and started to notice that on Windows 10 VM my Ranorex Tests would randomly freeze in different places of the test suite. The only way to progress was to manually intervene and this would require clicking in the VM and Clicki...
by mtaylor
Sat Dec 05, 2015 12:51 am
Forum: Object Identification and Technologies
Topic: Microsoft Edge browser intial element recongition
Replies: 4
Views: 3097

Re: Microsoft Edge browser intial element recongition

I figured it out and for those that need the code for all the browsers here you go: public partial class OpenBrowser { public static TestGroovApp.GroovAppRepository SSLRepo = TestGroovApp.GroovAppRepository.Instance; /// <summary> /// This method gets called right after the recording has been starte...
by mtaylor
Fri Dec 04, 2015 11:39 pm
Forum: Object Identification and Technologies
Topic: Microsoft Edge browser intial element recongition
Replies: 4
Views: 3097

Re: Microsoft Edge browser intial element recongition

SO here is the issue. I see what you are saying to do and I am sort of doing that however... I'm noticing that two instances of the Popupwatcher are being called when I get to Chrome/Edge. Then because its trying to execute my method twice there are tabs and enters flying everywhere. [img]Capture.jp...
by mtaylor
Fri Nov 20, 2015 7:34 pm
Forum: Object Identification and Technologies
Topic: Microsoft Edge browser intial element recongition
Replies: 4
Views: 3097

Microsoft Edge browser intial element recongition

So the issue is Microsoft Edge because it first starts out as a winAPP you cannot use web.document to latch on to the HTML elements. So when I am trying to bypass the ssl security warning using the guide here http://www.ranorex.com/forum/using-popupwatcher-to-accept-browser-ssl-certificates-t5409.ht...
by mtaylor
Fri Nov 20, 2015 7:27 pm
Forum: Automation API
Topic: Using PopupWatcher to accept browser ssl certificates
Replies: 9
Views: 5340

Re: Using PopupWatcher to accept browser ssl certificates

So the issue now is Microsoft Edge because it first starts out as a winAPP you cannot use web.document to latch on to the HTML elements.
by mtaylor
Fri Feb 13, 2015 5:40 pm
Forum: Automation API
Topic: Using PopupWatcher to accept browser ssl certificates
Replies: 9
Views: 5340

Re: Using PopupWatcher to accept browser ssl certificates

A reply from Jay @ Ranorex use a key sequence of {Enter} or {Tab}{Enter} to navigate around the tab focus and deal with the dialog using keyboard actions. The easiest way for me to bypass Chrome's Security Warning page was to record a sequence of key strokes with the ranorex capture mode and then go...
by mtaylor
Wed Feb 11, 2015 5:39 pm
Forum: Automation API
Topic: Using PopupWatcher to accept browser ssl certificates
Replies: 9
Views: 5340

Re: Using PopupWatcher to accept browser ssl certificates

Please explain how you got the full path of your repository. I see you used sslrepo.xxx.xxx.xxx but where did you get this parent folder info from. Nevermind I forgot to make an instance. However I am still not able to get the code to work for chrome as it's error SSL page has not elements to attac...