Ugh, xpath following sibling can be such a pain. One thing that helped me was using `contains()` for classes since sometimes there are extra spaces or other classes. Like:
`//div[contains(@class, 'item')]/following-sibling::div`
If you’re still stuck, paste a snippet of your HTML here. Hard to debug without seeing the actual structure.
`//div[contains(@class, 'item')]/following-sibling::div`
If you’re still stuck, paste a snippet of your HTML here. Hard to debug without seeing the actual structure.
