実現したいこと
特定の値を取りたいのですが、同じidやタグを使っているものが他にもあるため、どうとればいいかアドバイスいただきたいです。
該当のソースコード
<div data-v-7d134874 id="nameData" class="detailInfo"> <h2 class-"test"> 名前 </h2> <table class="table"> <tr data-v-1c666666> <th data-v-1c666666>備考</th> <td data-v-1c666666 class="pre">サンプル</th> </table> </div> <div data-v-1c666666 id="nameData" class="detailInfo"> <h2 class-"test"> 住所 </h2> <table class="table"> <tr data-v-1c666666> <th data-v-1c666666>備考</th> <td data-v-1c666666 class="pre">テキスト</th> </table> </div>
名前の備考の「サンプル」と、住所の備考の「テキスト」をそれぞれ取るXPathを知りたいです。。
class名やidは全て一緒です。違いはh2のテキストのみです。
試したこと
//div[contains(@id, 'nameData') and contains(text(), '名前') and contains(text(), '備考')]
これでは反応しませんでした。。
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
Windows
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2023/02/21 12:52