npm i
# or
yarn
Go to index.js in root folder and change the variable URL to your SurveyMonkey URL.
Search for your survey questions and then find the right element you want to select, check or fill out.
In utils/
you find modules which sets radio buttons to checked = true
.
npm run start
# or
yarn start
http://localhost:4000/fill or your env. port
Insert the code below into the console of e.g. Google Chrome. Every 8s the page sends a GET-Request to the "API".
setInterval(async () => {
await fetch('http://localhost:4000/fill',
{ method: 'GET' });
}, 8000);