File size: 3,663 Bytes
0770a22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Автоотправка запросов</title>
    <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <!-- Подключаем SweetAlert2 -->
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding: 20px;
        }
        input, button {
            margin: 10px;
            padding: 10px;
            font-size: 16px;
        }
        #counter {
            font-size: 20px;
            font-weight: bold;
            color: green;
        }
    </style>
</head>
<body>

    <h2>Отправка запросов</h2>

    <label>URL запроса:</label>
    <input type="text" id="requestUrl" placeholder="Введите URL">
    <br>

    <label>Задержка (мс):</label>
    <input type="number" id="delayTime" value="500" min="100">
    <br>

    <button id="startBtn">Старт</button>
    <button id="stopBtn">Стоп</button>
    <br>

    <p>Отправлено запросов: <span id="counter">0</span></p>

    <script>
        let intervalId = null; // Переменная для хранения ID интервала
        let count = 0; // Счётчик запросов

        document.getElementById("startBtn").addEventListener("click", function () {
            const url = document.getElementById("requestUrl").value.trim();
            let delay = parseInt(document.getElementById("delayTime").value, 10);

            if (!url) {
                Swal.fire("Ошибка", "Введите URL для отправки запросов!", "error");
                return;
            }

            if (isNaN(delay) || delay < 100) {
                Swal.fire("Ошибка", "Минимальная задержка 100 мс!", "error");
                return;
            }

            count = 0; // Сбрасываем счётчик
            document.getElementById("counter").textContent = count;

            Swal.fire({
                title: "Запросы запущены!",
                text: `Будут отправляться каждые ${delay} мс.`,
                icon: "success",
                timer: 2000,
                showConfirmButton: false
            });

            // Запускаем отправку запросов по таймеру
            intervalId = setInterval(() => {
                fetch(url, { method: "GET" })
                    .then(response => {
                        if (!response.ok) throw new Error("Ошибка запроса");
                        return response.text();
                    })
                    .then(data => {
                        console.log("Ответ сервера:", data);
                        count++;
                        document.getElementById("counter").textContent = count;
                    })
                    .catch(error => {
                        console.error("Ошибка:", error);
                        Swal.fire("Ошибка", "Не удалось отправить запрос!", "error");
                    });
            }, delay);
        });

        document.getElementById("stopBtn").addEventListener("click", function () {
            if (intervalId) {
                clearInterval(intervalId);
                intervalId = null;
                Swal.fire("Остановлено", "Запросы больше не отправляются", "info");
            }
        });
    </script>

</body>
</html>