Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなものはHpple Xpathを使用して機能します
//a[4]
HTMLツリーの4番目のタグ? または、 for() ループでカウントしてプログラムで行う必要がありますか?
<a>HTML ドキュメントの 4 番目の XPathは次のとおりです。
<a>
(//a)[4]
あなたの例では、それぞれの親の 4 番目であるすべての s の//a[4]セットが生成されますが、それはここで必要なものではありません。<a><a>
参照: https://stackoverflow.com/a/14209492/1945651