You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// get item's labelconstlabel=item.getLabel()// find if the item can be expandedconstisExpandable=awaititem.isExpandable();// try to expand the item and find if it has childrenconstisParent=awaititem.hasChildren();// find if item is expandedconstisExpanded=awaititem.isExpanded();// collapse the item if expandedawaititem.collapse();// select the item and get its children if it ends up expanded, otherwise get an empty arrayconstchildren=awaititem.select();// get the tooltip if presentconsttooltip=awaititem.getTooltip();