9

我有一个特殊的列表框,我可以通过发送向下箭头并按 Enter 来实现最佳自动化。

我可以像这样按回车:

listbox_example = find(input, "listbox-example")
listbox-example.set("stuff")
#down arrow command goes here
listbox-example.native.send_keys :return

如何编写向下箭头命令?

4

4 回答 4

12

如果我没记错的话,发送向下箭头命令的正确方法是使用 arrow_down

所以你的代码应该是这样的

listbox-example.native.sendkeys :arrow_down

如果您想要一份可以发送的所有可用密钥的列表,那么文档是您的朋友

http://www.ruby-doc.org/gems/docs/f/frameworks-capybara-0.2.18/SendKeys.html

编辑:这个链接可能有预期的内容。 https://www.omniref.com/ruby/gems/frameworks-capybara/0.2.18/symbols/SendKeys

于 2012-12-17T15:34:47.667 回答
2
find('#element_id').send_keys :arrow_down
于 2019-08-10T17:11:53.373 回答
1

这些答案取决于我相信的驱动程序。我正在使用 Apparition js 驱动程序(即,它是 capybara 的插件),并且有效的魔法代码是这样的:

find("input[type='search']").send_keys(:down).send_keys(:enter)

使用水豚 3.33.0

使用Apparition JS 驱动程序(水豚插件)版本 0.6.0

于 2021-02-16T17:02:05.793 回答
-1

这些天(Capybara 2.5+ 版)您可以<enter>通过以下方式模拟密钥:

find('.selector').set("text\n")

这里\n是关键。我认为您应该能够以非常相似的方式模拟向下箭头。

于 2016-12-23T16:22:58.670 回答