我有一个从“ create-react-app”创建的应用程序,并且我添加了puppeteer来运行端到端测试。 尝试运行登录测试时,我无法在登录表单输入中键入文本。
jest-puppeteer.config.js:
module.exports = {
server: {
command: `npm start`,
port: 3000,
launchTimeout: 10000,
debug: true
}
};
jest.config.js:
module.exports = {
preset: 'jest-puppeteer',
testRegex: './*\\index.test\\.js$'
};
我的登录测试:
it('should login test user', async () => {
await page.waitForSelector('form[name="login"]');
await expect(page).toFillForm('form[name="login"]', {
username: 'abcd',
password: 'abcd'
});
await expect(page).toMatchElement('input[name="username"]', { text: 'abcd' });
}
我也尝试使用以下任何一种方法:
await page.type('#username', 'abcd');
await page.click('input[name="username"]');
await page.type('input[name="username"]', 'abcd');
await expect(page).toFill('input[name="username"]', 'abcd');
但是,它仍然不会键入任何文本。我想知道我的设置是否适合create-react-app。知道如何解决这个问题吗?
答案 0 :(得分:1)
Puppeteer默认情况下无头运行,我相信它确实在后台运行。
在jest-puppeteer.config.js中添加以下几行:
launch: {
headless: false,
}
所以看起来像这样:
module.exports = {
launch: {
headless: false,
},
server: {
command: `npm start`,
port: 3000,
launchTimeout: 10000,
debug: true
}
};
这实际上将打开浏览器,您将能够看到正在发生的事情。
答案 1 :(得分:0)
在继续操作之前,请检查您的应用,并检查选择器是否有误。不知何故,我更喜欢在使用诸如Jest之类的测试框架或您喜欢的任何东西之前,仅单独使用puppeteer,以查看代码是否运行良好且流畅。
请不要忘记为开始测试添加headless : false
。
您可以尝试这个。
describe('Login', () => {
beforeAll(async () => {
await page.goto('https://localhost:3000');
})
it('should login test user', async () => {
const waitForTheName = await page.waitForSelector('input[name="username"]');
const focusInputName = await page.focus('input[name="username"]')
const writeInputName = await page.keyboard.type('abcd')
const focusInputPaswd = await page.focus('input[name="password"]')
const writeInputPaswd = await page.keyboard.type('abcd')
await expect(page).toFillForm('form[name="login"]', {
username: 'abcd',
password: 'abcd'
})
await expect(page).toMatchElement('input[name="username"]', { text: 'abcd' })
}
})