thanks for doing these guys for every release this is very helpful! Also great questions Joel
@maopuerta34302 жыл бұрын
Playwright the best, forever
@jumoogde2 жыл бұрын
welcome back joel
@rayprusia47532 жыл бұрын
Thanks just getting started with Playwright, it appears miles above Selenium.
@TymurDaudov_aka_tymfear2 жыл бұрын
Guys, please, deliver full screenshot on failure feature! And thank you for the tool!
@acidinmyhead2 жыл бұрын
@andrey why we need to use HAR type of mock rather than putting response from dev tools to the object? Is it more lightweight, or only pros of this is autogenerated response file?
@aslushnikov2 жыл бұрын
Yeah, auto-generation & update is the best part of the HAR replay
@AnUnprofessionalChef2 жыл бұрын
Team, thanks for the video, how can we maximize the window when we have multiple projects (multi-browser ) scenario from the conf file ….thanks
@damianperez77362 жыл бұрын
Drag and drop in the devtools? wow
@EvilTowell2 жыл бұрын
can i use chain of fill(str).type('{key}') ?
@dragon36020102 жыл бұрын
Can we record har of some requests on the real browser to use them with playwright?
@dragon36020102 жыл бұрын
I didn't get well the Har replay, What's the purpose?
@damianperez77362 жыл бұрын
I think the har replay is when you wanna test your app against some mocked data
@letcode2 жыл бұрын
Hi 😊
@viksankar9732 жыл бұрын
New video on these changes ? Haha
@letcode2 жыл бұрын
@@viksankar973 coming tomorrow 😊
@andreaskarz2 жыл бұрын
Joel, you can be really annoying sometimes. Andrey, really cool stuff, thank you. The Network replay is exactly what we search to test volatile apps like investment apps. For the images, I have implement another solution, so you will have images there, but they are mocked. What you think about that? const imgResponse = await page.request.fetch('picsum.photos/id/1000/2000/2000?grayscale'); await page.route('**/*', async route => { if(route.request().resourceType() === 'image' && route.request().url().endsWith('.jpg')){ route.fulfill({ response: imgResponse }); } else { route.continue(); } }); @Andrey, why the route order is in reverse? @Andrey, Is ignoreCase really in the spirit of testing? You want to find errors and IMHO this includes typos.