Had this exact issue last week! The problem was that the sibling wasn’t *directly* after. Try:
`//div[@class='item']/following-sibling::*[local-name()='div'][1]`
Also, [this XPath cheatsheet](https://devhints.io/xpath) saved my life.
`//div[@class='item']/following-sibling::*[local-name()='div'][1]`
Also, [this XPath cheatsheet](https://devhints.io/xpath) saved my life.
