Windows应用功能测试工具 EFT

码农软件 · 软件分类 · 测试工具 · 2019-11-25 14:41:31

软件介绍

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);

本文地址:https://www.codercto.com/soft/d/19767.html

Programming Python

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》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

html转js在线工具
html转js在线工具

html转js在线工具