Unable to click sub-menu link in a desktop application

Hi @Dave_Evers - Thank you for your suggestion. I have used Actions builder in my code as per the suggestion given in this thread - Unable to click submenu item for desktop applications and it worked for me.

Actions builder = new Actions(Windows.getDriver());
builder.click(subMenuElement)
builder.perform()