如何使用Selenium模拟在html文本输入中按Enter键?

发布于 2024-07-05 10:30:54 字数 183 浏览 7 评论 0原文

在网络界面中,我有一个文本字段。 当用户输入文本并通过 Enter 接受时,应用程序将执行操作。

我想用 Selenium 测试行为。 不幸的是,使用 chr(13) 调用“keypress”会将字符的表示插入到字段中。

除了提交表格还有其他方法吗? 我想模仿预期的用户交互,没有任何捷径......

In a web interface, I've got a text field. When user enters text and accepts with enter, application performs an action.

I wanted to test the behavior with Selenium. Unfortunately, invoking 'keypress' with chr(13) insert representation of the character into the field.

Is there a way other then submitting the form? I'd like to mimic intended user interaction, without any shortcuts...

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

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

发布评论

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

评论(5

旧话新听 2024-07-12 10:30:54

您可以使用
Webelement.sendkeys(Keys.Enter);

you can use
Webelement.sendkeys(Keys.Enter);

新人笑 2024-07-12 10:30:54

这段 Java 代码对我有用:

selenium.keyDown(id, "\\13");

注意转义。 你可能需要像 chr(\13) 这样的东西

This Java code works for me:

selenium.keyDown(id, "\\13");

Notice the escape. You probably need something like chr(\13)

暮年慕年 2024-07-12 10:30:54

我最终使用 selenium.keyPress(id, "\\13");

I ended up using selenium.keyPress(id, "\\13");

陌路终见情 2024-07-12 10:30:54

虽然我还没有对此进行测试,但我想您可以使用附加到字符串的“\r\n”来模拟新行。 如果没有,请查找相当于“Environment.NewLine;”的语言 ?

Though I haven't tested this I imagine you can use "\r\n" appended to a string to simulate a new line. If not look for the languages equivalent to "Environment.NewLine;" ?

锦上情书 2024-07-12 10:30:54

我已经有一段时间没有这样做了,但我似乎记得必须使用 JavaScript 片段来执行回车,而不是使用 Selenium 按键功能。

It's been a while since I've had to do this, but I seem to recall having to use a javascript snippet to execute the carrage return as opposed to using the Selenium keypress function.

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