Search found 5 matches

by phibao37
Mon Jul 09, 2018 5:32 am
Forum: General Questions
Topic: Use Ranorex Magic Merger with older Ranorex version
Replies: 2
Views: 1245

Use Ranorex Magic Merger with older Ranorex version

From Ranorex 8.2, I see that Ranorex Magic Merger is introduced. I wonder if this tool working for older Ranorex version or not? (example Ranorex 7) Does this tool available as separate application so I can install Ranorex 7.x.exe then install this tool? Another way, can I copy Ranorex.MagicMerger.e...
by phibao37
Sun Jan 07, 2018 5:32 am
Forum: Mobile Testing
Topic: Unable to connect to network AVD devices
Replies: 1
Views: 1929

Unable to connect to network AVD devices

I have following environment Computer 1 - Windows 7 - dev machine - IP: 192.168.1.2 - Install Ranorex (6.1.1) Computer 2 - Windows 7 - sharing android virtual machine - IP: 192.168.1.3 - Install AVD1, AVD2, ... (installed Ranorex service) (May be: computer 3, 4 - other dev machines) I want to connec...
by phibao37
Tue Sep 12, 2017 3:26 am
Forum: Automation Tools
Topic: How to disable GDI capture feature during runtime
Replies: 1
Views: 1880

How to disable GDI capture feature during runtime

I'm creating automation script for an application that contains many custom element like diagram, status text (this text can be obtained with GDI capture feature), but this feature also affect to another function as well. Firstly, this is test case for basic element that Ranorex can recognize it, an...
by phibao37
Fri Mar 10, 2017 10:40 am
Forum: Automation API
Topic: Validate without touch module success/failure status
Replies: 2
Views: 2484

Re: Validate without touch module success/failure status

Hi Phibao, In order to check whether the image are the same, I would recommend using the Imaging class rather than the Validate class, since the imaging class doesn't throw an exception on a failure. It just compare images and returns true or false and doesn't abort the test run. Imaging.Compare(bi...
by phibao37
Tue Mar 07, 2017 10:35 am
Forum: Automation API
Topic: Validate without touch module success/failure status
Replies: 2
Views: 2484

Validate without touch module success/failure status

I'm validating my app item captured image match with some expected image, like this: // Get screenshot image of repo item CompressedImage img1 = myItemInfo.Getscreenshot_1(); CompressedImage img2 = myItemInfo.Getscreenshot_2(); CompressedImage img3 = myItemInfo.Getscreenshot_3(); bool res1 = Validat...