如何使用Capybara和selenium web驱动程序发送密钥

时间:2015-09-21 13:17:40

标签: ruby selenium automation capybara

我知道水豚使用原生,我需要为此安装宝石吗?

我在输入搜索框后尝试按Enter键

1 个答案:

答案 0 :(得分:3)

如果使用capybara 2.5,你可以

input = find_field 'id, name, label of search box'
input.send_keys 'text to send', :enter

如果使用capybara< 2.5用硒会是

input.native.send_keys 'text to send', :enter