I have to colour an element after the selection, the element which i would like to colour is found as a child of the following sibling.
I have successfully located the element using the following code
page.getByRole(AriaRole.COMBOBOX, new Page.GetByRoleOptions().setName("* Legal Type"))
How can I go to the following sibling from this element and then locate the child of that following-sibling?
Any help?