- Make sure you use the exact window you need.
top_window_()may return a completely different window.
To check, run:
app.top_window_().DrawOutline() #Highlight the window
2. The window may be inactive, before typing, set it:
window = app.top_window_()
window.SetFocus()
window.TypeKeys("{TAB 2}")
3. Moreover, you may need to click on the window.
window.Click()
window.TypeKeys("{TAB 2}")
source
share