Search found 87 matches

by mdgairaud
Mon Oct 19, 2015 11:27 am
Forum: Object Identification and Technologies
Topic: Accessing Chome Devtools elements?
Replies: 1
Views: 1606

Accessing Chome Devtools elements?

Hi, I need to automate some functionality inside Chrome DevTools that isn't covered with shortcuts. For example inside DevTools > Network it's impossible to click over an element of the waterfall, get the innertext (or similar) of an item, click start/stop or clear buttons, ... These operations does...
by mdgairaud
Tue Jul 22, 2014 12:51 pm
Forum: General Questions
Topic: Where can I download older versions?
Replies: 3
Views: 7940

Re: Where can I download older versions?

oh!... no idea about this page. great! :)
by mdgairaud
Mon Jul 21, 2014 11:23 am
Forum: General Questions
Topic: Where can I download older versions?
Replies: 3
Views: 7940

Re: Where can I download older versions?

use this: https://www.ranorex.com/free-trial/

also you can download any version if you change the number version in the link
by mdgairaud
Fri Jul 11, 2014 10:09 am
Forum: Automation Discussions
Topic: Can we run Ranorex remotely
Replies: 1
Views: 2368

Re: Can we run Ranorex remotely

You must install ranorex in the client machine with a runtime license in order to execute test on it, because all the logic to detect elements or DOM's cannot be extracted from the main installation. At least as I know, maybe someone from support can provide more info about this. EDIT: take a look t...
by mdgairaud
Mon Jun 30, 2014 11:42 am
Forum: General Questions
Topic: Ranorex report -access denied
Replies: 5
Views: 2272

Re: Ranorex report -access denied

Hi,

Do you have writing permissions on the network path? Have you tried to map the network drive to a letter?



regards
by mdgairaud
Mon Jun 30, 2014 11:40 am
Forum: General Questions
Topic: Solved - Ranorex was unable to start the 32/64 Bit Bridge
Replies: 10
Views: 7018

Re: Ranorex was unable to start the 32/64 Bit Bridge

Hi benny28, Yes it is possible to enable the BitBridge in VS. To enable BitBridge via code use: Ranorex.Core.Configuration.Current.Plugins.Win32.EnableBitBridge = true; kind regards, Markus Markus, you make my day... These line of code solved my issue with Chrome and Ranorex :D :D :D not the same p...
by mdgairaud
Tue Jun 24, 2014 8:26 am
Forum: Bug Reports
Topic: Compiler error by using ToString(string format)
Replies: 1
Views: 2480

Re: Compiler error by using ToString(string format)

Hi michael23,

That's not a Ranorex bug. To solve your issue you must change the .NET framework of your Ranorex project to .NET4 . With .NET3.5 it will fail no matter the IDE you use


regards.
by mdgairaud
Tue Jun 24, 2014 8:19 am
Forum: Automation Discussions
Topic: Automating Credit Card Swipe w/ POS device
Replies: 4
Views: 10905

Re: Automating Credit Card Swipe w/ POS device

Hi, As krstsc said an emulator of your POS device isn't the real thing, the behaviour might change (or not). In our test we need to automate the interaction with physical token devices (like ones you can use with banking transactions) and we solve it using a robotic arm that receives a petition from...
by mdgairaud
Tue Jun 24, 2014 7:58 am
Forum: General Questions
Topic: Google will block all Chrome extensions from outside it's st
Replies: 6
Views: 2060

Re: Google will block all Chrome extensions from outside it's st

To Support,

Entering in Chrome's developing mode isn't an option to our test, when will your extension available in Chrome Store to avoid this issue?

From now i'm using a modified portable version of Chrome v32 as workaround because Chrome's version isn't important for us.

regards.
by mdgairaud
Thu May 29, 2014 4:47 pm
Forum: General Questions
Topic: Google will block all Chrome extensions from outside it's st
Replies: 6
Views: 2060

Re: Google will block all Chrome extensions from outside it's st

I already know about this post, but seems to be inminent with next Chrome update when Google blocks extensions that are outside it store.

The solution provided there will work with blocked extensions? that's the question. :?:
by mdgairaud
Wed May 28, 2014 3:12 pm
Forum: General Questions
Topic: Google will block all Chrome extensions from outside it's st
Replies: 6
Views: 2060

Google will block all Chrome extensions from outside it's st

Hi,

Today google has announced that all the Chrome extensions that are not in its official store will be blocked.

How does this affect the Ranorex extension for Chrome?

http://chrome.blogspot.ca/2014/05/prote ... cious.html

Regards.
by mdgairaud
Thu May 15, 2014 12:51 pm
Forum: Automation Tools
Topic: image validation
Replies: 2
Views: 2236

Re: image validation

Hi, I try to explain you how I use static image recognition :roll: . VALIDATION 1. Start recording an action and in the recording control windows, check the image validation checkbox. 2. Press Validate and click over the element you want. 3. Inside Validation window, press Next to enter the image va...
by mdgairaud
Tue May 13, 2014 8:13 am
Forum: Bug Reports
Topic: Ranorex + chrome 33=popup: disable developer mode extensions
Replies: 21
Views: 12464

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

have you tried to remove the extension and then reinstalling it? it worked for me.

the extension crx file is inside ranorex installation folder, simply drag inside the chrome's extension tab and reboot it.


hope it works for you.
by mdgairaud
Fri Apr 11, 2014 10:56 am
Forum: Automation Tools
Topic: How to catch ValidationException without failing the test?
Replies: 1
Views: 3387

Re: How to catch ValidationException without failing the test?

hi, it fails doing the mouse.click or validating? it's important because the catch isn't the same. an error doing a click() is catched with a RanorexException and a validation error is catched with a ValidationException . To avoid this, I always do these steps: 1. Check if item that I want to click ...