-1
I’m making an automation app but I’m stuck on the part where it opens the Zoom app.
I need him to click Open Zoom Meetings, tried to use:
//Pagina do Zoom
Zoom: async () => {
//Dialog Box
await objetivo.pagina.waitForNavigation({
waitUntil: "networkidle2"
});
await objetivo.pagina.on('console', dialog => {
dialog.accept();
});
},
Code didn’t work, I tried to use page.keyboard.press("Enter")
but msm so did not work.