When I open a website on the browser. Now I want to click button through javascript console which every browser has. The button have class and the website is not using jquery so the code will be pure javascript.
document.getElementsByClassName('btn-orange').trigger('click'); document.getElementsByClassName('btn-orange').click();
Thank you for taking time for helping me.