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

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -