Page 1 of 1

Image comparison and comparison

Posted: Wed Jun 12, 2019 7:21 pm
by shawn1
With the change of the test runner from 9.0.1 to 9.1.0, when I do an image based comparison, the expected and actual are different now because the actual image now has the test runner status in the image which is intrusive. How do I turn this off or at least hide the test runner from the image comparison?

Re: Image comparison and comparison

Posted: Thu Jun 13, 2019 2:00 pm
by odklizec
Hi,

If you mean Ranorex progress dialog, then you can disable it in test suite properties, as shown here...
https://www.ranorex.com/forum/issues-va ... tml#p17649

Eventually, you can disable/enable it from code...
Ranorex.Controls.ProgressForm.Hide();
Ranorex.Controls.ProgressForm.Show();

Re: Image comparison and comparison

Posted: Fri Jul 12, 2019 4:15 pm
by shawn1
Thank you, that did the trick.