python - Move popup window -
the popup image window blocks stop button , other buttons in windows application. how move window in squish? tried move window using following script. squish not recognizing popup window.
win = waitforobject(":_image0")  mousepress(win.x, win.y - 10, mousebutton.leftbutton, 0) mousemove(win.x + 100, win.y) mouserelease(mousebutton.leftbutton) thanks pg
you try using mousedrag() function, e.g.
mousedrag(win, 100, 0) in upcoming squish 6.1 release, there's toplevelwindow api can used move such windows.
Comments
Post a Comment