开发者

How to automate the testing of Outlook Add-In?

开发者 https://www.devze.com 2022-12-09 20:28 出处:网络
I have an Outlook Addin developed in C#,VSTO and has a lot of unstructured code and very huge in size. 开发者_开发百科every time there is a modification / Update ,I have to Manually test it from end t

I have an Outlook Addin developed in C#,VSTO and has a lot of unstructured code and very huge in size. 开发者_开发百科every time there is a modification / Update ,I have to Manually test it from end to end which is very painful and time consuming. This add in has a lot of rules whch pops up alert / dialog box and user has to take some actions on that. Is there any way/tool which can be used to automate this task?


I would work on adding unit tests to the existing code; with unit tests to check that everything still works after your changes you won't need to run your end-to-end tests so frequently.

You can also automate your end-to-end acceptance tests by using the UI Automation framework to drive Outlook.


You can also experiment with AutoIT

0

精彩评论

暂无评论...
验证码 换一张
取 消