私はAndroid AppとAppiumのオートネーションでスクロール可能なリスト(検索結果)を持っていますが、そこから特定の要素を選択する必要があります。 Appiumインスペクタは、index、resource-id、xpathなどの情報を提供しています。xアンドロイドのリスト要素のパス(appiumオートメーションを使用)
content-desc:
type: android.widget.TextView
text: AMI
index: 0
enabled: true
location: {60, 513}
size: {81, 61}
checkable: false
checked: false
focusable: false
clickable: false
long-clickable: false
package: com.abc.xyz.debug
password: false
resource-id: com.abc.xyz.debug:id/student_label_text
scrollable: false
selected: false
(appiumインスペクタによって提供される)最初の結果のXPathは次のようである:
//android.support.v7.widget.RecyclerView[1]/android.widget.FrameLayout[1] /android.widget.FrameLayout[1]/android.widget.LinearLayout[1]/android.widget.LinearLayout[1]/android.widget.LinearLayout[1]/android.widget.FrameLayout[1]/android.widget。 RelativeLayout [1] /android.widget.LinearLayout [1] /android.widget.LinearLayout [1] /android.widget.TextView [1] seconため
それは...
//android.support.v7.widget.RecyclerView[1]/android.widget.FrameLayout[2]/android.widget.FrameLayout[1]/android.widget.LinearLayoutある結果dは[1] /android.widget.LinearLayout [1] /android.widget.LinearLayout [1] /android.widget.FrameLayout [1] /android.widget.RelativeLayout [1] /android.widget.LinearLayout [1] /アンドロイド.widget.LinearLayout [1] /android.widget.TextView [1]
上記のxPathsは動作しますが、私はより短いバージョンを探しています。私は様々な組み合わせを試しましたが、私はこれに新しいので、解決策を見つけることができません。この仕事やこの仕事をすることができるツールに関する助け?
をすることができますuの最後のTextViewの詳細を提供するappium inspectorに表示される – SaiPawan
@sai更新情報 – TestingWithArif
答えを確認 – SaiPawan