
We are looking for Manual QA Engineer to join a team to build a global live video streaming platform designed to connect people through real-time experiences. The platform enables users to request, create, and watch live streams from anywhere in the world, bringing audiences closer to creators, professionals, and authentic moments as they unfold.
It focuses on making live interaction more accessible, flexible, and meaningful.
The project is built for scale and real-world impact, combining modern technology with a product-first mindset.
window.addEventListener('DOMContentLoaded', (event) => { // Находим все кнопки "Податься" const applyButtons = document.querySelectorAll('.apply-button'); // Замените на ваш класс кнопки // Находим скрытое поле в форме для вакансии const jobInput = document.querySelector('#job-title-input'); // Замените на ID вашего input applyButtons.forEach(button => { button.addEventListener('click', function(e) { // Получаем название вакансии из атрибута data-job-title const jobTitle = this.getAttribute('data-job-title'); // Устанавливаем значение в скрытое поле формы if (jobInput) { jobInput.value = jobTitle; } }); }); });