activity org.ruboto.test_app.CallSuperActivity setup do |activity| start = Time.now loop do @text_view = activity.findViewById(42) break if @text_view || (Time.now - start > 60) sleep 1 end assert @text_view end test('super called correctly') do |activity| assert_equal 'With Super', activity.find_view_by_id(42).text.to_s end