我想要的是这样的东西,但我找不到像文档中的* type_text *方法:
describe "login controller" do
tests LoginController
it "lets you login" do
type_text('user@example.com', :into => 'Email address') # Made up method
type_text('mypassword', :into => 'Password') # Made up method
tap('Login')
view('Login succes!').should.not == nil
end
end
有什么想法吗?
答案 0 :(得分:1)
这是一个很好的问题。有人会认为工具包中有一些东西可以实现这个目标......
我唯一知道的就是绕道而行。您可以选择存储数据的视图,如:http://www.rubymotion.com/developer-center/articles/testing/#_finding_views
然后只需更改视图的text属性。