тогда почему код ниже не работает? он кликает только первый элемент [1] после закрытия всплывающего окна на второй элемент [2] клик не происходит
// ==UserScript==
// @name New Userscript
// @namespace
http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match
https://hh.ru/*
// @grant none
// ==/UserScript==
(function() {
"use strict";
var q = document.getElementsByClassName("bloko-button bloko-button_small HH-VacancyResponsePopup-Link");
var w = document.getElementsByClassName("bloko-button bloko-button_secondary HH-VacancyResponsePopup-Submit HH-SubmitDisabler-Submit");
var e = document.getElementsByClassName("b-pager__next-text m-active-arrow HH-Pager-Controls-Next HH-Pager-Control");
var url = window.location.href;
if (url.indexOf("hh.ru/search/vacancy?") == -1) setTimeout(function()
{
history.back();
}, 2000);
setTimeout(function() {
q[1].click(); }, 3000);
setTimeout(function() {
q[2].click(); }, 3000);
})();