我一直在網上尋找答案,但找不到它。請幫幫我。 如何在Calabash-Android中按下列表項目?Calabash android,點擊ListView?
0
A
回答
2
試試這個
將定義添加到ruby步驟文件。
Then /^I scroll to cell with "([^\"]*)" label and touch it$/ do |name|
element="TextView text:'#{name}'"
if !element_exists(element)
wait_poll(:until_exists => "TextView text:'#{name}'", :timeout => WAIT_TIMEOUT) do
performAction('scroll_down')
end
if element_exists(element)
touch(element)
sleep(STEP_PAUSE)
else
screenshot_and_raise "could not find the cell"
end
else
touch(element)
sleep(STEP_PAUSE)
end
end
,並從功能文件Then I scroll to cell with "cellMainLabel" label and touch it
+0
感謝它的運作 – Sasha
0
上面的答案看起來有點傻瓜證明比我打電話,但我一直在使用下面的相當愉快:
spinner selection
Then (/^I select spinner by id "(.*?)"$/) do |spinnerid|
touch("spinner id:'#{spinnerid}'")
end
select an item in the damn spinner
Then (/^I touch "(.*?)"$/) do |text|
touch("TextView text:'#{text}'")
end
這兩個步驟,第一部分將通過它的id選擇微調器,然後第二部分通過你引用的文本選擇微調器中的項目。
相關問題
- 1. calabash-android:點擊圖片的名字
- 2. Listview點擊Android
- 3. android listview item點擊
- 4. Calabash Android通過ListView循環檢查
- 5. 點擊Android ListView的整行
- 6. ListView點擊在Android片段
- 7. Android Listview點擊崩潰
- 8. Android的Listview按鈕點擊
- 9. Android - SimpleCursorAdapter ListView無法點擊
- 10. Android儀器ListView點擊
- 11. Calabash Android
- 12. Calabash-Android IF ELSE
- 13. Calabash android - HTTPClient :: KeepAliveDisconnected
- 14. 的ListView點擊
- 15. ListView和按鈕點擊小工具[Android]
- 16. Android ListView與CheckBox可以區分點擊
- 17. android-在ListView中處理項目點擊
- 18. Android,ListView項目變得不可點擊
- 19. ListView項目點擊數(Android Java)
- 20. Android Listview多個按鈕點擊
- 21. Android ListView無法點擊項目
- 22. ListView項在Android中不可點擊
- 23. 的Android - 延遲點擊ListView中
- 24. android button在listview中可點擊
- 25. Android ListView控件行可點擊
- 26. Android listview點擊多個項目
- 27. 無法點擊ListView中的元素Android
- 28. c中可點擊的listview android
- 29. android tab佈局listview不可點擊
- 30. Android ListView - 如何應對物品點擊?
你是什麼意思?你能提供更多細節嗎?你有什麼和你想做什麼? – balazsbalazs