Search found 12 matches

by pere
Mon Jul 20, 2009 10:53 am
Forum: Object Identification and Technologies
Topic: DOM Document not found
Replies: 3
Views: 3256

Re: DOM Document not found

Sure! The IE version I'm using is IE8. The application is working almost continuously. What it does is login into a internal web application and perform some deletion of information. During this process the Ranorex API is used to navigate to some pages, fill in some forms, and delete some data from ...
by pere
Fri Jul 17, 2009 3:18 pm
Forum: Object Identification and Technologies
Topic: DOM Document not found
Replies: 3
Views: 3256

DOM Document not found

Hi, I'm using Ranorex to automate a quite simple process that has to be performed with a Web Application. The application I've build is always running, and each time it has to perform that specific process, it: 1.- Launches a new IE browser 2. Performs the operations 3.- Closes the browser This is w...
by pere
Tue Jun 02, 2009 3:32 pm
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

Yes, it does. I'm using now the Keyboard to perform the click, because I'm lucky and it's the default button of the dialog...
Great if you can fix it so soon!
by pere
Tue Jun 02, 2009 7:51 am
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

softomania wrote:The solution is very useful.


Software testing tutorial
I'm sorry but I cannot find any related topic in the web you mention. Can you point me to the right place in the web? Thanks.
by pere
Thu May 28, 2009 2:08 pm
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

We bought Ranorex just three weeks before 2.1 was on the market, and my licensing does not include 2.1....

And no, I don't have IE8 beta, and use standard 96 DPI (though I changed it some time ago). But now it's 96 again, so...
by pere
Thu May 28, 2009 10:28 am
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

Hi,
Unfortunately we are a healthcare company and we cannot send any information outside because of patient data protection. However, I'm experiencing this same problem with other webs. I'll send you a snapshot from your own web and a sample screenshot of what the Spy highlights on the screen.
by pere
Thu May 28, 2009 9:28 am
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

Bug with Web plugin

Well, I'm not using any Click method because the mouse never points to the right place. When I use the click, the mouse moves approx. 180-190 pixels to the left and 120-130 pixels to the top of the right place, so it clicks in the air... Within RanorexSpy, if I highlight the elements of the DOM, the...
by pere
Wed May 27, 2009 5:49 pm
Forum: General Questions
Topic: Automation Locking MessageBox
Replies: 9
Views: 3730

Automation Locking MessageBox

Hi, I am automating a web page. Everything goes fine until I press a 'Delete' button that pops up a confirmation Message Box in JavaScript: function confirmDelete() { res = window.confirm("Are you sure you want to delete this record?") if (res) { return true; } else { return false; } } When a button...
by pere
Tue May 26, 2009 8:41 am
Forum: General Questions
Topic: Multithreading
Replies: 5
Views: 3969

Well, the UI thread of the application using Ranorex is never blocked. The UI thread that gets blocked in my prototype is the thread of the client application making a synchronous call through WCF. I agree that is not a good design, but because it was for test purposes I did not think in this situat...
by pere
Mon May 25, 2009 5:45 pm
Forum: General Questions
Topic: Multithreading
Replies: 5
Views: 3969

Hi,
I just tried making the synchronous calls from a non UI thread in the client, and now it works... Bad luck I didn't realize this on las friday... :(

Thanks!
by pere
Mon May 25, 2009 5:26 pm
Forum: General Questions
Topic: Multithreading
Replies: 5
Views: 3969

Thanks for your quick reply. Let me give you some more information: 1 and 2. Regarding these, I couldn't get Ranorex to work from a service, even if it was running as LocalSystem with desktop interaction allowed. I was getting strange behaviors, so I'm launching a WinForms process and monitor it fro...
by pere
Mon May 25, 2009 3:50 pm
Forum: General Questions
Topic: Multithreading
Replies: 5
Views: 3969

Multithreading

Hi, I am trying to automate some operations on a web. In summary, these operations are exposed through a WCF service (free threading) hosted in a WinForms (otherwise there's no way to use Ranorex, as it seems that there must be a running Form within the proces...). Every time a clients calls the WCF...