After resolve the wait and click problem I'm facing this one:
UnhandledPromiseRejectionWarning:
"ElementClickInterceptedError: element click intercepted-bar-item icon-transfer">...</button> is not clickable at point (52, 346). Other element would receive the click: <div class="ut-".
How can we "implicit" click and ignore this kind of message?
the code to wait and click is as follow:
await driver.wait(until.elementLocated(By.xpath("//button[text()='Transfers']")),15000);
let btn= driver.findElement(By.xpath("//button[text()='Transfers']"));
await driver.wait(until.elementIsEnabled(btn,15000));
await driver.findElement(By.xpath("//button[text()='Transfers']")).click();