标签: ruby selenium automation capybara
我知道水豚使用原生,我需要为此安装宝石吗?
我在输入搜索框后尝试按Enter键
答案 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