Posts by didi • 21 points
3 posts
-
1
votes1
answer81
viewsQ: Why doesn’t getElementsByClassName work without for?
was creating a menu that had two buttons, a Description tab and another show tab of the data sheet. I created a function in javascript that when clicking the button display of an would None and…
-
-1
votes1
answer40
viewsQ: I’m doing a project with Node.JS and Puppeteer, I need him to click the Dialog Box
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…
-
0
votes2
answers68
viewsQ: I’m learning JS and was testing functions and have a doubt
I was testing Function and wanted to make it detect ! of a message: //Detector de ! function detector(){ var detector = txt.indexOf("!") if(detector>-1) return true } //reponder a mensagem…