• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

用UIAutomation做验收测试

发布: 2009-6-17 17:27 | 作者: 网络转载 | 来源: 领测软件测试网采编 | 查看: 316次 | 进入软件测试论坛讨论

领测软件测试网 这是被测的应用程序:




应用.NET 3.0提供的UIAutomation,我们可以用以下步骤来进行测试

1. 启动应用程序

C#代码 复制代码
  1. string path = @"The Path To The Application";   
  2. Process process = Process.Start(path);  


2. 获得主窗口对应的AutomationElement

C#代码 复制代码
  1. Thread.Sleep(1000);   
  2. AutomationElement aeMainWindow = AutomationElement.FromHandle(process.MainWindowHandle);  


3. 获得按钮对应的AutomationElement

C#代码 复制代码
  1. AutomationElement aeHelloButton = aeMainWindow.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Button));  


4. 点击按钮

此处的GetCurrentPattern相当于Query Interface,Pattern也是UIAutomation的精髓所在。给不同的UI框架做不同的adapter,实现各种各样的pattern,也就是建立了一个概念上的大一统UI。

C#代码 复制代码
  1. InvokePattern ipHelloButton = (InvokePattern) aeHelloButton.GetCurrentPattern(InvokePattern.Pattern);   
  2. ipHelloButton.Invoke();  


5. 获得文本框对应的AutomationElement

C#代码 复制代码
  1. AutomationElement aeHelloTextBox = aeMainWindow.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Edit));  


6. 取得文本框中的文本

C#代码 复制代码
  1. TextPattern tpHelloTextBox = (TextPattern) aeHelloTextBox.GetCurrentPattern(TextPattern.Pattern);   
  2. string text = tpHelloTextBox.DocumentRange.GetText(-1);  


7. 监听窗口被关闭事件

C#代码 复制代码
  1. Automation.AddAutomationEventHandler(WindowPattern.WindowClosedEvent, aeMainWindow, TreeScope.Element, HandleMainWindowClose);   
  2. private static void HandleMainWindowClose(object sender, AutomationEventArgs e)   
  3. {   
  4.   Console.WriteLine("Main Window Closed");   
  5. }  


8. 关闭窗口

C#代码 复制代码
  1. process.Kill();  


此时控制台上就会打印出"Main Window Closed"

整个过程演示了三个主要功能:
1、如何主动去操纵界面(点击按钮)
2、如何取得界面的状态(获得文本)
3、如何监听界面的事件(关闭窗口事件)

结论:
UIAutomation可以给Win32, WindowsForms, WPF编写的应用程序撰写验收测试

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: 验收 UIAutomation


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网