window.open("data:text/html, <html><head><title>some title</title></head><body><h1>text example</h1></body></html>", "_blank", "toolbar=yes, scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400");
отправить отзыввнизу страницы
querySelector('.programming.questions#toster')
<li class="video-list-item related-list-item show-video-time">
<li class="video related show time">
querySelector('li.video.related.show.time')
function click_me(sel){
document.querySelector(sel).click()
}
function loop(i){
click_me('#ДивВКоторомПерваяКнопка > .КлассПервойКнопки')
setTimeout(function(i){
click_me('#ДивВКоторомВтораяКнопка > .КлассВторойКнопки')
if(i) setTimeout(loop.bind(null, i-1), 500)
}.bind(null, i), 500)
}
loop(10)