Appium Clique no elemento JavaScript
//Get Element
let myElement = await driver.elementById("Id of your element");
//Click the element
await myElement.click();
Fancy Flatworm