testing dialog

Ask general questions here.
mander95
Posts: 58
Joined: Tue Jun 21, 2016 7:35 pm

testing dialog

Post by mander95 » Thu Oct 13, 2016 5:49 pm

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.
You do not have the required permissions to view the files attached to this post.

User avatar
N612
Posts: 135
Joined: Mon Jul 11, 2016 4:01 pm

Re: testing dialog

Post by N612 » Thu Oct 13, 2016 7:55 pm

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
You do not have the required permissions to view the files attached to this post.

mander95
Posts: 58
Joined: Tue Jun 21, 2016 7:35 pm

Re: testing dialog

Post by mander95 » Tue Oct 18, 2016 5:51 pm

got it, thank you :D :D :D :D :D