LDTP
3.0.0
|
guiexist('<window name>'[, <object name>])
If the given window name exist, this function returns 1. If window doesnot exist, then this function returns 0.
Refer: http://cgit.freedesktop.org/ldtp/ldtp/tree/src/client-handler.c
1 | on success and 0 on no existing window |
With respect to gedit Open dialog
from ldtp import *
guiexist('dlgOpenFile...')
guiexist('dlgOpenFile...', 'btnOpen') # Returns 1, If window exist and also the object exist
guiexist('dlgOpenFile...', 'btnabc') # Returns 0