Search found 10 matches

by JayInMA
Mon Jun 02, 2014 6:03 pm
Forum: Object Identification and Technologies
Topic: not seeing pages in Chrome
Replies: 1
Views: 1846

not seeing pages in Chrome

using the spy I do a simple path I open our web app in Chrome then in code call this: IList<WebDocuments> docs= Host.Local.Find("/dom"); Sometimes I will see my chrome /dom pages some items I don't (for same page) often I am able to use RX to access controls to log in, but the resultant page, someti...
by JayInMA
Fri May 02, 2014 8:20 pm
Forum: Automation API
Topic: How to get PID of app an adaptor is in?
Replies: 3
Views: 2901

Re: How to get PID of app an adaptor is in?

When you start the browser the Host.Local.OpenBrowser() method will return the PID. It is the same with any other application startup in Ranorex, using Host.Local.RunApplication() or Host.Local.RunMobileApp(). string BrowserProcessID = Host.Local.OpenBrowser(url, browser, browserArgs, killExisting,...
by JayInMA
Fri May 02, 2014 1:07 pm
Forum: Automation API
Topic: How to get PID of app an adaptor is in?
Replies: 3
Views: 2901

How to get PID of app an adaptor is in?

I need to know how to get the Process ID of the app for a given Adapter WebDocument wd1 = Host.Local.FindSingle<WebDocument>(new Ranorex.Core.RxPath("/dom[@domain='FOO']"), NUnitHelper.RanorexSearchTimeout); How do I get the PID of the browser? This could easily be a Form or some other item, not jus...
by JayInMA
Sat Apr 12, 2014 1:56 am
Forum: Bug Reports
Topic: Ranorex + chrome 33=popup: disable developer mode extensions
Replies: 21
Views: 12485

Re: Ranorex + chrome 33=popup: disable developer mode extensions

Code worked great for me..

but in one case we seemed to have hit the disable not the cancel. Is there a way to programically detect that Chrome has the Ranorex plug in and it's active?
by JayInMA
Wed May 01, 2013 1:36 pm
Forum: Object Identification and Technologies
Topic: Path from a Ranorex.Control not found using spy
Replies: 5
Views: 2632

Re: Path from a Ranorex.Control not found using spy

Thanks for taking a look.. What we have done is created a tool that runs in same process to find all the paths for controls on a form and that tool helps us quickly create wrapper class for our forms.( This basically, makes a 'skin' for our test writers that makes it feel closer to the actual thing ...
by JayInMA
Tue Apr 30, 2013 3:56 pm
Forum: Object Identification and Technologies
Topic: Path from a Ranorex.Control not found using spy
Replies: 5
Views: 2632

Re: Path from a Ranorex.Control not found using spy

I created a test program that shows the issue and have attached it to this post. Core of the program is in the method runtree(Adapter rxAdaptor) It starts at top of form, and using recursion walks all the Adapters and their children saving the reported RXpath. 1) Run Program.. 2) Press "Find Paths" ...
by JayInMA
Tue Apr 16, 2013 8:13 pm
Forum: Object Identification and Technologies
Topic: Path from a Ranorex.Control not found using spy
Replies: 5
Views: 2632

Path from a Ranorex.Control not found using spy

This is for Ranorex version 4.0.2.21666 In one of my tests I get a path of a Ranorex.Control that I got to by recursively walking down from the root of the winforms app. When I use that Path in RXSpy, it reports it as an invalid path. If flip things around.. and hardcode in path reported by spy, it ...
by JayInMA
Thu Mar 21, 2013 4:07 pm
Forum: General Questions
Topic: parent-child relationship is not found in tree view
Replies: 3
Views: 2428

Re: parent-child relationship is not found in tree view

I am trying to find a solution for this.. I have hit same issue.

It's been a few years now, has anything changed?

Or any suggestions for work arounds?
by JayInMA
Fri Jan 11, 2013 12:57 pm
Forum: Automation API
Topic: Finding Ranorex Path of a System.winforms.forms.control
Replies: 3
Views: 2835

Re: Finding Ranorex Path of a System.winforms.forms.control

Thanks for reply

That was very simple example, where in reality the path to control is very embedded, with a lot of dynamically created controls.

Was hoping there was a more automated route i could take to get the path to use in testing later
by JayInMA
Thu Jan 10, 2013 5:30 pm
Forum: Automation API
Topic: Finding Ranorex Path of a System.winforms.forms.control
Replies: 3
Views: 2835

Finding Ranorex Path of a System.winforms.forms.control

Hi, I am trying to make some tools to help in creating wrappers around some of our forms. I want to find the Ranorex Path for a given System.winforms.forms control say Button such in code public class Form1 : System.Windows.Forms.Form { public System.Windows.Forms.TextBox myPathTxt = new System.Wind...