Sha256: 189c08c6206e3624c30c163d2ee94698e587f7cb45117aea9051cc4b96b00350
Contents?: true
Size: 662 Bytes
Versions: 22
Compression:
Stored size: 662 Bytes
Contents
activity Java::org.ruboto.test_app.ImageButtonAndButtonActivity setup do |activity| start = Time.now loop do @text_view = activity.find_view_by_id 42 break if @text_view || (Time.now - start > 60) sleep 1 end assert @text_view end test('button changes text') do |activity| assert_equal 'What hath Matz wrought?', @text_view.text activity.find_view_by_id(44).perform_click assert_equal 'Button pressed', @text_view.text end test('image button changes text') do |activity| assert_equal 'What hath Matz wrought?', @text_view.text activity.find_view_by_id(43).perform_click assert_equal 'Image button pressed', @text_view.text end
Version data entries
22 entries across 22 versions & 1 rubygems