
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@antlerengineering/form-filler
Advanced tools
automation of filling AntlerVC/form-builder forms using playwright
Sample useage:
const { chromium } = require('playwright');
const formFiller = require('.');
const formData = [
{
// rich text
label: 'description',
value: 'a random description',
},
{
// text
label: 'Unique page header (max. 100 characters)',
value: 'a random page header',
},
{
// text field (long text)
label: 'Tell me more',
value: 'bla bla blablabla',
},
{
// single selector
label: 'Who is the CEO of Antler?',
value: 'Option 2',
},
{
// multiple selector
label: 'Who are Antler Engineering team members?',
value: ['Option 2', 'Option 3'],
},
{
// single selector with MultiSelect component
label: 'ceo of facebook',
value: 'Option 2',
},
{
// checkbox
label: 'I am not a robot',
value: true,
},
{
// radio
label: 'Highest education level?',
value: 'Option 4',
},
{
// slider
label: 'Your age',
value: 5,
},
{
// multiple text
label: 'Previous employers',
value: ['Antler', 'Antler Sydney', 'Antler Australia'],
},
{
// color picker
label: 'Preferred color for your Antler shirt?',
value: '#ff00ff',
},
{
// date selector
label: 'Your birthday',
value: '19701025', // format: "YYYYMMDD"
},
{
// datetime selector
label: 'book a time',
value: '199010201050a', // format: "YYYYMMDDHHMM[a/p]"
},
{
// error
label: 'None existing label',
value: '',
},
];
async function main() {
const browser = await chromium.launch({
headless: false,
slowMo: 0,
});
const page = await browser.newPage();
await page.goto('http://localhost:1234');
await formFiller(page, formData);
await page.waitForTimeout(10000);
// await page.waitForSelector(`//div[normalize-space(.)="Profile saved"]`);
await browser.close();
}
main();
FAQs
automation of filling AntlerVC/form-builder forms using playwright
We found that @antlerengineering/form-filler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.