2013-02-10 70 views
5

我需要在黃瓜測試用例中點擊鍵盤的回車鍵。我已經使用硒網絡驅動程序。 請告訴我該怎麼做?如何用黃瓜測試用例點擊輸入鍵

+0

如果你填寫表格請參閱http://stackoverflow.com/questions/2797752/cucumber-capybara-and-selenium-submiting-a-form-without-a-button – 2013-02-10 19:53:11

回答

8

您可以使用keysActionBuilder

page.driver.browser.key_down(:enter).key_up(:enter).perform 

send_keys

find(:id, 'my_id').native.send_keys(:enter) 

水豚當前不包含它自己的API或按鍵。

+0

我已經做到了: 查找(:id,'my_id')。native.send_keys(「\ n」) – 2013-02-11 07:45:24