Automated Recording Tools(自动录音工具)
问题描述
有没有什么好的测试记录工具可以记录在 .Net 应用程序上执行的操作?
Is there any good test recording tools that can record the actions that are performed on a .Net application?
我正在做桌面 .Net 应用程序,有时用户可能会在一系列冗长的步骤后使应用程序崩溃.所以在这种情况下,测试记录工具很有帮助,因为它可以收集用户的鼠标点击和鼠标操作.
I am doing desktop .Net application, and sometimes users can crash the application after a series of long-winded steps. So in this case, a test recording tool is helpful as it can collect the mouse clicks and mouse actions the users do.
有什么想法吗?
问题已编辑
推荐答案
正如 Tom E 所说,您的问题令人困惑.您需要一个可以捕获和记录用户操作的库,而不是测试自动化工具.我知道的是 TestRecorder;以下是其描述的摘录:
As Tom E said, your question is confusing. You need a library that can capture and log user actions, not a test automation tool. The one I know about is TestRecorder; here's an extract from its description:
TestRecorder 是一组运行时库,与您的 32 位和 64 位应用程序一起分发.一旦合并到您的应用程序中,TestRecorder 就会以二进制格式完整记录最终用户的操作.之后,可以使用 TestComplete 将记录的数据转换为关键字测试或 VBScript、JScript、DelphiScript、C++Script 或 C#Script 中易于阅读的脚本代码.这些脚本可以准确地告诉您用户在应用程序执行期间正在做什么——允许您通过 TestComplete 或 TestExecute 准确地重复用户操作的序列.
TestRecorder is a set of runtime libraries to be distributed with your 32-bit and 64-bit applications. Once incorporated into your application, TestRecorder fully records end-user actions in the binary format. Later, the recorded data can be converted with TestComplete to a keyword test or easily readable script code in VBScript, JScript, DelphiScript, C++Script or C#Script. These scripts tell you exactly what a user was doing during application execution — allowing you to accurately repeat the sequence of user actions via TestComplete or TestExecute.
这篇关于自动录音工具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:自动录音工具
基础教程推荐
- C# 从 List<List<int>> 中删除重 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
