Вы не можете обнаружить событие клика в междоменном iframe, но одним способом является то, что вы можете обнаружить фокус на этом iframe.
Сначала щелкните за пределами iframe, а затем на iframe! Вы увидите предупреждение.
window.focus(); //force focus on the currenct window;
window.addEventListener('blur', function(e){
if(document.activeElement == document.querySelector('iframe'))
{
alert('Focus Left Current Window and Moved to Iframe / Possible click!');
}
});
<iframe name='random'>
<div role='button' id='buttonB'></div>
</iframe>