# popform **Repository Path**: mirrors_codejamninja/popform ## Basic Information - **Project Name**: popform - **Description**: Autopopulate and submit web forms - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # popform Autopopulate and submit web forms ![](assets/popform.png) ## Usage ```sh npm install --save popform ``` ```js import popform from 'popform'; const config = [ { delay: 10000, // wait for the page to load fields: { // fields to populate username: { value: 'some-username' }, password: 'some-password' // string assumed to be value }, elements: [ // elements to modify { query: '.box', style: { backgroundColor: 'blue' } } ], submit: '#submit' // location of submit button }, { // Autopopulate second form after first form is submitted } ]; popform(config).then(() => { console.log('Form autopopulated and submitted'); }); ```