How to click a 'next' button of a window using python

ⅰ亾dé卋堺 提交于 2019-12-04 16:16:07

It seems like you have been trying automate non standard controls by pywinauto. I am recommending you make a click by coordinates, of course if there are no other tasks except press the button.

dialog.Click(coords=(x, y))

or

dialog.ClickInput(coords=(x, y))

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!