We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionAnybody know of any Python bindings for Mi开发者_Python百科crosoft UI Automation?
http://msdn.microsoft.com/en-us/library/ms747327.aspx
without having to use IronPython. I am aware of the excellent pywin32 work, but Microsoft UI Automation is supposed to be the successor of the Active Accessibility layer, which I have been using on Windows XP. I need to migrate of the "Active Accessibility" functionality (event triggers on open windows, focus controls, etc.) to a Windows 7 platform.
Thanks!
Take a look on Cobra
Cobra WinLDTP is based on Linux Desktop Testing Project - http://ldtp.freedesktop.org LDTP works on Windows/Linux/Mac/Solaris/FreeBSD/NetBSD/Palm Source, yes its Cross Platform GUI testing tool.
They claimed it based on Microsoft DLL's (.NET3.5) - (Interop.UIAutomationClient.dll, UIAComWrapper.dll, WUIATestLibrary.dll)
I manage to use it with python for testing HTMLlayout app.
This maybe what you would like to use.It allows you to call UIAutomation using python and what you need to do is just update the demo file.https://github.com/chengzi/PyUIAutomation
精彩评论