Sendkeys(“{BACKSPACE}”) 将“B”插入到字符而不是退格

发布于 2024-11-07 18:45:52 字数 431 浏览 1 评论 0原文

我在 Silverlight 项目中声明了一个文本框,其内容为“123456”,然后在编码 UI 测试中使用以下代码。首先,它搜索并单击文本框以设置焦点,然后尝试删除字符。

currencyPage.ClickEditByAutomationId("textBox");
Keyboard.SendKeys("{END}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");

这是我的文本框中生成的文本:123456BBBBB

我做错了什么?文本框的 XAML:

I have a TextBox declared in a Silverlight project with contents “123456” and then use the following code in a Coded UI test. First it searches and clicks the TextBox to set focus, and then tries to delete characters.

currencyPage.ClickEditByAutomationId("textBox");
Keyboard.SendKeys("{END}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");
Keyboard.SendKeys("{BACKSPACE}");

This is the resulting text in my TextBox: 123456BBBBB

What am I doing wrong? XAML of the textbox:

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

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

发布评论

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

评论(2

盛装女皇 2024-11-14 18:45:52

尝试

Keyboard.SendKeys("{BACK}");

Try

Keyboard.SendKeys("{BACK}");
甜心 2024-11-14 18:45:52

尝试 Keyboard.SendKeys(@"{BACKSPACE}");Keyboard.SendKeys("{{BACKSPACE}}");

Try Keyboard.SendKeys(@"{BACKSPACE}"); or Keyboard.SendKeys("{{BACKSPACE}}");

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