What's a good, if any, .NET Windows automation library?

后端 未结 9 884
北海茫月
北海茫月 2020-12-02 07:57

I\'m looking for a library that can be used in native .NET code, just like any .NET assembly. The purpose of the library must be to automate Windows (push a button, select a

相关标签:
9条回答
  • 2020-12-02 08:09

    This library is pretty interesting and is fairly simple. Perhaps it will help you.

    0 讨论(0)
  • 2020-12-02 08:12

    Have you looked at the White framework?

    0 讨论(0)
  • 2020-12-02 08:12

    Check out Tools for automated GUI testing on windows

    0 讨论(0)
  • 2020-12-02 08:13

    I have used WebAii from ArtOfTest with a fair degree of success in automating integration testing for a Silverlight app. It also supports WinForms and Web applications.

    Microsoft UI Automation, the successor to Active Accessibility, can do almost all of the Windows UI automation you would need.

    0 讨论(0)
  • 2020-12-02 08:15

    How about CSharpScript, here's an article about it on Codeproject, and here's the link to the main website. Furthermore, it is familiar C#, scripted which can be used to automate anything.

    Hope this helps, Best regards, Tom.

    0 讨论(0)
  • 2020-12-02 08:20

    microsoft's own built in one is fine

    http://msdn.microsoft.com/en-us/library/ms747327.aspx

    not restricted to wpf as some seem to think.

    0 讨论(0)
提交回复
热议问题