Page 1 of 1

testing dialog

Posted: Thu Oct 13, 2016 5:49 pm
by mander95
When I run my tests in Ranorex, is it possible to adjust where the testing dialog appears on the screen or make it invisible altogether when I take screenshots? For example, in the screenshot attached to this message, the testing dialog blocks a few buttons in the bottom right corner, I want to get the screenshot so it doesn't block those buttons.

Re: testing dialog

Posted: Thu Oct 13, 2016 7:55 pm
by N612
3 possible solutions:
  • Perform a mouse move to the location of the progress box. This will cause the window to relocate to the top right.
  • Temporarily disable the progress window when taking a screen shot:

    Code: Select all

    Ranorex.Controls.ProgressForm.Hide();
    Report.Screenshot();
    Ranorex.Controls.ProgressForm.Show();
  • Fully disable the progress window:
    2016-10-13 14_53_02-.png
    2016-10-13 14_53_38-SampleSolution Properties.png

Re: testing dialog

Posted: Tue Oct 18, 2016 5:51 pm
by mander95
got it, thank you :D :D :D :D :D