I have the following code:
from pywinauto import Desktop
from pyautogui import position
while True:
desktop = Desktop(backend="uia")
control = desktop.from_point(*position())
control.draw_outline()
So on every code loop pywinauto draws a green rectangle on the control of the current mouse position. Like this:

But, exclusively, on the CMD application, the from_point function does not find the status bar and the scroll bar. It only finds the Text Area.
I think it is something related to the CMD application, probably it draws its text area control in front of all the others controls. So I want to know if it possible to overcome this sitution, using the functions top_from_point and/or parent, perhaps. It is worth mentioning that I have not found any other application with the same behavior, but it may be that some other application also has this problem.
