I feel your pain! Sometimes the issue isn’t the xpath following sibling but the *context*. Make sure you’re not inside a nested div or something.
Try this:
`//*[@class='item']/following-sibling::*[1]`
More generic, but might catch what you need.
Try this:
`//*[@class='item']/following-sibling::*[1]`
More generic, but might catch what you need.
