2015-06-16 46 views

回答

0

結束對於下面的工作,你需要知道的最後一個項目的文本在您的列表視圖:

lvElement = driver.find_element(:class, 'android.widget.ListView') 
scrollToItem = {} 
scrollToItem["element"] = lvElement.ref 
scrollToItem["text"]='{the text of the last item}' 

現在使用「scrollTo」命令,它會滾動,直到找到想要的項目的文本:

driver.execute_script("mobile: scrollTo", scrollToItem) 
+0

感謝nissim,會讓你知道這是否會工作。 – priya

+0

什麼是scrollToitem在這裏。這是名單還是什麼。我正在使用c# – priya

+0

這是一個WebElement – Nissim

相關問題