如何在 TestComplete 工具中取消特殊字符的按键模拟?

发布于 2024-10-30 05:29:07 字数 383 浏览 2 评论 0原文

谁能告诉我如何取消 TestComplete 中特殊字符的模拟?

我正在尝试向 runas 窗口发送密码,如下所示:

hCmd.Keys(a_Password + "[Enter]")

其中 hCmdrunas 命令窗口的句柄。

但是,如果密码值包含任何特殊字符,例如 !^,TestComplete 会模拟 Shift 或 Ctrl 等键。

有没有办法通过 TestComplete 取消此类操作对于键中的指定部分(例如密码前后的 HTML 标记),以便所有字符都将按这些标记之间的位置键入?

Can anyone tell me how to nullify the simulation for special characters in TestComplete?

I am trying to send a password to the runas window like:

hCmd.Keys(a_Password + "[Enter]")

where hCmd is the handle for the runas command window.

But if the password value contains any special characters like ! or ^, TestComplete is simulating the keys to Shift or Ctrl etc..

Is there a way to nullify such operation by TestComplete for a specified part in the keys like a HTML tag before and after the password so that all characters will be typed as it is between these tags?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱绻入梦 2024-11-06 05:29:07

您需要通过将这些特殊字符加倍来转义它们:

!!!

~~~

^^^

[[[

这个其实在文档

如果您要从外部源检索 a_Password 值,则只需在将其传递给 Keys 方法之前执行字符串替换即可。例如:

a_Password = a_Password.replace("!", "!!").replace("~", "~~").replace("^", "^^").replace("[", "[[");
// or
a_Password = a_Password.replace(/[!~^[]/g, "
amp;
amp;");

只是想知道Testcomplete是否针对此类场景提供了任何解决方案?

字符串替换是我所知道的唯一解决方案,并且是一个非常简单的解决方案。另请注意,仅当您使用Keys“键入”文本时才需要这样做。当您使用 wText 或类似属性以编程方式设置文本时,无需转义这些特殊字符或以其他方式预处理文本。

You need to escape these special characters by doubling them:

!!!

~~~

^^^

[[[

This is actually mentioned in the key code table in the documentation.

If you are retrieving the a_Password value from an external source, then simply do a string replace before passing it to the Keys method. For example:

a_Password = a_Password.replace("!", "!!").replace("~", "~~").replace("^", "^^").replace("[", "[[");
// or
a_Password = a_Password.replace(/[!~^[]/g, "
amp;
amp;");

Just curious to know if there any solution provided by Testcomplete for such scenarios?

String replace is only solution I'm aware of, and is a pretty simple one. Note also that this is only needed when you "type" text using Keys. When you set the text programmatically using wText or similar properties, there's no need to escape those special characters or otherwise preprocess the text.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文