I want to click new chat button in http://web.whatsapp.com/ , and search a string.
Below is html tag that i want click:
<button class="icon icon-chat" title="New chat"></button>
and i use this javascript to click it:
document.querySelector('.icon.icon-chat').click()
but not work.
in same web, i use this code for clicking sending icon for send message and work:
document.querySelector('.icon.icon-send.compose-btn-send').click()