Incredible teaching skills, you are so knowledgable. Thank you!
@Mukeshotwani11 ай бұрын
Thank you so much Vassilis
@NiazAhmad-y6p3 ай бұрын
Incredible teaching skills, you are so knowledgable. from Pakistan
@Mukeshotwani3 ай бұрын
Thank you so much Niaz :)
@NiazAhmad-y6p3 ай бұрын
@@Mukeshotwani welcome.
@madirajuchaitanya2 ай бұрын
Great video on "How to Install Playwright"! It’s really helpful for both beginners and experienced professionals looking for a quick refresher. Thanks for putting together this tutorial series for us! 🙂
@Mukeshotwani2 ай бұрын
You're very welcome! Madiraju sir. Good to see your comment.
@zmdbwkwj Жыл бұрын
this channel deserves more views and llikes, very infromative content sir
@Mukeshotwani Жыл бұрын
Thank you, it means a lot to me.
@karinesbsbsbАй бұрын
Thanks for this video! It helped me a lot!
@MukeshotwaniАй бұрын
You're welcome! Happy Learning.
@ishanpant114 күн бұрын
Hi Mukesh, npx command not able to install playwright browser( unable toget local issuer certificate)
@Mukeshotwani10 күн бұрын
Hi Ishan, Try below options Option 1 npx playwright install --ignore-ssl-errors Option 2 npm install playwright --save-dev npx playwright install Option 3 update node and update npm Option 4 - If you are running behind proxy npm config set proxy your-proxy:port npm config set https-proxy your-proxy:port Option 5 set NODE_TLS_REJECT_UNAUTHORIZED=0 npx playwright install
@Buraizu Жыл бұрын
Bro in ur file explorer have folder icons , is that extension? what is it called?
@Mukeshotwani Жыл бұрын
Yes, I use this theme please check this kzbin.info/www/bejne/jHitYq15nbmUZpI&pp=ygUgcGx1Z2lucyBmb3IgdnNjb2RlIE11a2VzaCBPdHdhbmk%3D
@EduardoNolasco-hq7vo8 ай бұрын
In Selenium, we have the option of using WebDriver Manager, which automatically downloads the latest version of the driver. Is this option available in Playwright? What happens if a new version of Playwright is released? Can we run an older project with a newer Playwright version?
@Mukeshotwani5 ай бұрын
Playwright handles browser management automatically, simplifying the process compared to Selenium's WebDriver Manager. When updating Playwright, it's generally safe to run older projects with a newer version, but always check the release notes for potential changes that might affect your tests. Following best practices like using lock files and running tests in a CI/CD pipeline can help ensure smooth updates and compatibility. For new versions you can use npm install @playwright/test@latest npx playwright install
@ishanpant114 күн бұрын
Hi Mahesh, I am getting error failed to install browser 'UNABLE_TO_GET_ISSUER_CERT_LOCALLY
@Mukeshotwani14 күн бұрын
Hi Ishan, please let me know below details so that I can help Which OS? Java Version ? Playwright Version? You can check system requirement for playwright from here playwright.dev/java/docs/intro#system-requirements
@ishanpant114 күн бұрын
@@Mukeshotwani Hi Mukesh, Java version is 11.0.22 and OS is 64 bit. I am getting the above error when I try to run the test in the browser.
@ganeshs46515 ай бұрын
Where have you declared "page"? If I use the page directly then it throws an error and asks me to declare. It works when I declare it like let page = await browser.newPage() How is it working for you without actually declaring? Please guide.
@Mukeshotwani5 ай бұрын
Here are multiple ways. This also works const browser = await chromium.launch({ headless: false }); // Create a new browser context const context = await browser.newContext(); // Create a new page const page = await context.newPage();
@kemparajull Жыл бұрын
npm ERR! could not determine executable to run npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\91733\AppData\Local pm-cache\_logs\2023-06-24T08_05_02_014Z-debug-0.log Getting this Error how to resolve it.
@Mukeshotwani Жыл бұрын
This is just part of console error, can you please provide complete log?