상황 가정. iframe으로 개발된 것을 합치는 상황
특정 조건에서 어떤 화면을 숨기거나 이벤트를 막는다고 가정
const iframe = document.querySelector<HTMLIFrameElement>('.iframeClassName');
const element = iframe?.contentWindow.document.querySelector('.elementClassName');
console.log(element)
document.getElementById('cross_domain_page').contentWindow.postMessage(.......)