- 授权协议: 未知
- 开发语言: C# .NET
- 操作系统: Windows
- 软件首页: http://code.google.com/p/eft/
- 软件文档: http://code.google.com/p/eft/wiki/10SecondsStart
软件介绍
Eft (easy functional testing) 是一个用于Windows桌面应用程序的功能和验收测试工 具,可以用来测试Windows Form, Win32和WPF应用程序. Eft使用CSS选择器来帮助使用者定位界面元素,并支持鼠标键盘等操作. Eft模拟用户对应用程序的实际使用来完成应用的测试. Eft目前构建在.NET3.0的UIAutomation和Win32 API上.
示例代码:
Application app = Application.Run("calc");
Window main = app.FindTopWindow("Calculator");
main.FindFirst("[name='1']").Click();
main.FindFirst("[name='+']").Click();
main.FindFirst("[name='2']").Click();
main.FindFirst("[name='=']").Click();
Assert.AreEqual("3. ", main.FindFirst("Edit").Text);
Programming Python
Mark Lutz / O'Reilly Media / 2006-8-30 / USD 59.99
Already the industry standard for Python users, "Programming Python" from O'Reilly just got even better. This third edition has been updated to reflect current best practices and the abundance of chan......一起来看看 《Programming Python》 这本书的介绍吧!
