If you want to automatically open green button popup on script is loaded here is the code
<html>
<head>
</head>
<body>
<p>POWERED BY RAMESHDADA</p>
<a href="#" onclick="FeedBackWALA()">RameshDada did it</a>
<script>
function FeedBackWALA() {
var r = confirm("ITALIANO: \n\nLo strumento di feedback non è ospitato dai nostri sistemi, potrebbe essere collocato fuori dall\'Unione Europea, inoltre potrebbe utilizzare cookie esterni. Puoi trovare ulteriori informazioni visitando il nostro HelpDesk o rivolgendoti al nostro supporto.\n\nUtilizzo:\n\nQuando il widget verde di feedback viene attivato a destra dello schermo, scorri la pagina fino al punto interessato, quindi clicca sul widget verde appena attivato! Per maggior sicurezza lo strumento di feedback viene attivato, tramite questo alert, solo quando richiesto dall\'utente.\n\nPremi Annulla per annullare, premi OK per attivare.\n\nENGLISH:\n\nThe feedback tool is not hosted by our systems, it may be located outside the European Union, and it may also use external cookies. You can find more information by visiting our HelpDesk or by contacting our support.\n\nUsage:\n\nWhen the green feedback widget is activated on the right of the screen, scroll the page up to the point concerned then click on the new green activated widget! For greater security, the feedback tool is activated via this alert only when requested by the user.\n\nPress Cancel to cancel, press OK to activate the tool.");
if (r == true) {
// Get HTML head element
var head = document.getElementsByTagName('HEAD')[0];
var script = document.createElement('script');
script.src = 'https://w.appzi.io/w.js?token=lgxGJ';
head.appendChild(script);
setTimeout(function(){
var iframe =document.getElementsByTagName("iframe")[0];
var elmnt = iframe.contentWindow.document.querySelector('.appzi-font-icon');
elmnt.click();
},2000);
} else {
alert ("Hai annullato l'\operazione quindi il widget di feedback non verrà attivato!\n\nYou have canceled the operation so the feedback widget will not be activated.")
}
}
</script>
</body>
</html>
Demo https://www.w3schools.com/code/tryit.asp?filename=GRX805D7WBR9 (click RUN)