This is such a time saver for the annoying test website popups.
@MahendraVidyarthi2 ай бұрын
Thanks Jared! What if I have to use this utility outside this class as a common reusable method which applies to all tests in suite. Should we go with some kind of wrapper class or fixtures? So that, when popup occurs at any point of time, code should be able to handle that.
@MaheshJoshi_wellington8 ай бұрын
Another amazing video on playwright thank you!
@CommitQuality8 ай бұрын
Thank you :)
@CowboyCoder218 ай бұрын
Awesome content! I would love to see a video on using playwright inside docker containers on azure pipelines.
@Another0neTime8 ай бұрын
Awesome video. My login script handles a similar situation by basically waiting for the element and if it doesn't appear, throws an error, I catch it and move on. Our popup doesn't always show, so I handled it like that. I like this approach much better, thanks for sharing!
@CommitQuality8 ай бұрын
Exactly the same here. I now changed to this approach because in my case the pop up can appear any time so the handler is way cleaner for me
@ariefsuraja17598 ай бұрын
Thanks for the video i will try on my case, popup ads always show randomly
@JonGould56076 ай бұрын
Thank you! Whats the best way to do this so it applies across ALL your tests? I dont want to add this to every test.