Search and click element by xpath, but never clicks on actual application

I’m executing Appium server 1.15.1 on Windows VM and notice an issue where I search for an element by xpath and do a click() like below which returns 200 Ok, but it never clicks that element on the actual application
Any suggestion on how to debug this further?
WebElement openRosterMenu = rootWait.until( ExpectedConditions.presenceOfElementLocated(By.xpath(“//*[contains(@Name, ‘Participants’)]”)));
openRosterMenu.click();

Appium server console log:

Blockquote
[HTTP] → POST /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element
[HTTP] {“using”:“xpath”,“value”:“//[contains(@Name, ‘Participants’)]“}
[MJSONWP (51613bca)] Driver proxy active, passing request on via HTTP proxy
[WD Proxy] Matched ‘/wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element’ to command name ‘findElement’
[WD Proxy] Proxying [POST /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element] to [POST http://127.0.0.1:4724/wd/hub/session/4235F8D2-51D4-4055-9435-335EF48EE90B/element] with body: {“using”:“xpath”,“value”:”//
[contains(@Name, ‘Participants’)]”}
[WinAppDriver] [STDOUT]
[WinAppDriver] [STDOUT] ==========================================
[WinAppDriver] [STDOUT] POST /wd/hub/session/4235F8D2-51D4-4055-9435-335EF48EE90B/element HTTP/1.1
[WinAppDriver] [STDOUT] Accept: application/json, /
[WinAppDriver] [STDOUT] Connection: close
[WinAppDriver] [STDOUT] Content-Length: 64
[WinAppDriver] [STDOUT] Content-Type: application/json; charset=utf-8
[WinAppDriver] [STDOUT] Host: 127.0.0.1:4724
[WinAppDriver] [STDOUT] User-Agent: appium
[WinAppDriver] [STDOUT]
[WinAppDriver] [STDOUT] {“using”:“xpath”,“value”:“//*[contains(@Name, ‘Participants’)]”}
[WinAppDriver] [STDOUT] HTTP/1.1 200 OK
[inAppDriver] [STDOUT] Content-Length: 122
[WinAppDriver] [STDOUT] Content-Type: application/json
[WinAppDriver] [STDOUT]
[WinAppDriver] [STDOUT] {“sessionId”:“4235F8D2-51D4-4055-9435-335EF48EE90B”,“status”:0,“value”:{“ELEMENT”:“da2302b9-207f-4f10-a619-e30497c53cc9”}}
[WD Proxy] Got response with status 200: {“sessionId”:“4235F8D2-51D4-4055-9435-335EF48EE90B”,“status”:0,“value”:{“ELEMENT”:“da2302b9-207f-4f10-a619-e30497c53cc9”}}
[WD Proxy] Replacing sessionId 4235F8D2-51D4-4055-9435-335EF48EE90B with 51613bca-af93-4862-8f0b-aecbe57722a5
[HTTP] ← POST /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element 200 9678 ms - 199
[HTTP]
[HTTP] → GET /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected
[HTTP] {}
[MJSONWP (51613bca)] Driver proxy active, passing request on via HTTP proxy
[WD Proxy] Matched ‘/wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected’ to command name ‘elementSelected’
[WD Proxy] Proxying [GET /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected] to [GET http://127.0.0.1:4724/wd/hub/session/4235F8D2-51D4-4055-9435-335EF48EE90B/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected] with body: {}
[WinAppDriver] [STDOUT]
[WinAppDriver] [STDOUT] ==========================================
[WinAppDriver] [STDOUT] GET /wd/hub/session/4235F8D2-51D4-4055-9435-335EF48EE90B/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected HTTP/1.1
[WinAppDriver] [STDOUT] Accept: application/json, /
[WinAppDriver] [STDOUT] Connection: close
[WinAppDriver] [STDOUT] Content-Type: application/json; charset=utf-8
[WinAppDriver] [STDOUT] Host: 127.0.0.1:4724
[WinAppDriver] [STDOUT] User-Agent: appium
[WinAppDriver] [STDOUT] HTTP/1.1 200 OK
[WinAppDriver] [STDOUT] Content-Length: 77
[inAppDriver] [STDOUT] Content-Type: application/json
[WinAppDriver] [STDOUT]
[WinAppDriver] [STDOUT] {“sessionId”:“4235F8D2-51D4-4055-9435-335EF48EE90B”,“status”:0,“value”:false}
[WD Proxy] Got response with status 200: {“sessionId”:“4235F8D2-51D4-4055-9435-335EF48EE90B”,“status”:0,“value”:false}
[WD Proxy] Replacing sessionId 4235F8D2-51D4-4055-9435-335EF48EE90B with 51613bca-af93-4862-8f0b-aecbe57722a5
[HTTP] ← GET /wd/hub/session/51613bca-af93-4862-8f0b-aecbe57722a5/element/da2302b9-207f-4f10-a619-e30497c53cc9/selected 200 13 ms - 77
[HTTP]
Blockquote

But I perform a doubleclick() action on this element, it works fine, but in actual this button doesn’t need a double-click
WebElement openRosterMenu = rootWait.until(ExpectedConditions.presenceOfElementLocated(By.xpath(“//*[contains(@Name, ‘Participants’)]”)));
actions = new Actions(rootDriver);
actions.moveToElement(openRosterMenu)
.doubleClick()
.perform();