google-form-autofill is a set of JavaScript scripts you can run directly in the browser console to automatically fill out Google Forms. It helps save time for:
- Testing long forms
- Stress-testing multiple submissions
- Filling out repetitive forms
You can fill:
✅ Text fields (short or long)
✅ Numbers, emails, dates
✅ Radio buttons
✅ Checkboxes
✅ Dropdowns
- Open your Google Form in Chrome, Edge, or Firefox.
- Press F12 → go to the Console tab.
- Paste one of the scripts from this repo.
- Press Enter → watch your form fill automatically!
google-form-autofill adalah kumpulan script JavaScript yang bisa dijalankan langsung di Console browser untuk mengisi Google Form secara otomatis. Script ini sangat membantu untuk:
- Menguji form panjang
- Stress-test (pengujian banyak pengisian)
- Mengisi form berulang secara cepat
Script ini bisa mengisi:
✅ Kolom teks (pendek maupun panjang)
✅ Angka, email, tanggal
✅ Radio button
✅ Checkbox
✅ Dropdown
- Buka Google Form yang ingin diisi otomatis di Chrome, Edge, atau Firefox.
- Tekan F12 → buka tab Console.
- Tempel salah satu script dari repository ini.
- Tekan Enter → form akan terisi otomatis!
document.querySelectorAll('input[type="text"]').forEach((el) => {
el.value = "John Doe";
el.dispatchEvent(new Event('input', { bubbles: true }));
});