I have a ElementHandle, and not its selector, how do I get its Parent and Siblings as ElementHandle.
I know that given selector of the Element, it can be done using
const item = document.querySelector(query);
const parent = item.parentElement;
Don't know what to do if I have ElementHandle instead of its selector. Please help.