Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

jestjs - Check browser console messages and response status codes in Playwright and Jest

I recently started writing end to end tests using Playwright and Jest packages.

In a test I would like to check that, after loading a page, the browser console doesn't contain any error message and all the requests performed in background have the status code equal to 200 (or maybe at least different from 5XX). The question is: what is the cleanest way to reach that?

Is the following a valid solution?

page.on('response', response => {
  expect(response.status()).toBe(200);
});
page.on('console', message => {
  expect(message.type()).not.toBe('error');
});
const response = await page.goto('https://url');

I don't know exactly why, but I thing I'm missing something.

question from:https://stackoverflow.com/questions/65648503/check-browser-console-messages-and-response-status-codes-in-playwright-and-jest

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...