关闭.这个问题是基于意见的。它目前不接受答案。
想改进这个问题吗? 通过编辑这篇文章,更新问题,使其能够用事实和引文回答。
关闭 4天前.文章源自玩技e族-https://www.playezu.com/188486.html
改进此问题文章源自玩技e族-https://www.playezu.com/188486.html
我的任务是编写一个自动化脚本来提交一个简单的表单。这是一个好代码吗?或者有任何方法可以让代码变得更好。它起作用了,问题是它好吗?文章源自玩技e族-https://www.playezu.com/188486.html
async function fillOutForm(url) {
const browser = await puppeteer.launch({ headless: false
const page = await browser.newPage();
await page.goto(url);
await browser.waitForTarget(target => target.url() === url);
await page.type('#name ', 'John');
await page.type('#email', 'john@gmail.com');
await page.type('#phone', '123-456-7890');
await page.type('#company', 'johndoeInc');
await page.select('#employees', '1-10');
// take a screenshot of the page
await page.screenshot({ path: 'example.png'
await page.evaluate(() => {
document.querySelector('#employees' ).value = '51-100';
await page.click('button');
// console log the url of the page
console.log('success');
await page.waitForTimeout(5000);
await browser.close();
}
fillOutForm(url);
软件测试论坛文章源自玩技e族-https://www.playezu.com/188486.html 文章源自玩技e族-https://www.playezu.com/188486.html
评论