How to Fix “No .NET SDKs Were Found” on Windows
If you’ve just installed or extracted the latest .NET SDK and run into the error “No .NET SDKs were found”, here’s how to fix it step by step. Code Don’t panic — this happens...
If you’ve just installed or extracted the latest .NET SDK and run into the error “No .NET SDKs were found”, here’s how to fix it step by step. Code Don’t panic — this happens...
You might be facing the error that says net::ERR_CERT_AUTHORITY_INVALID at <URL>. For that, you have to just ignore HTTPS errors in Playwright. The SSL certificate error can be bypassed if we just use an...
So you won’t believe it what AI can do these days! Gemini is going out of hand now letting you build your own apps. You can do it as well, if you explore the...
Well, I know sometimes easy tasks become Herculean when you don’t find the answer you are looking for. Don’t worry this Dumb IT Dude got you covered. You might have installed an extension that...
Some projects have a pre-requisite to add file names that are too long, you know, there could be use cases that require a file to test max capabilities. But when you are dealing with...
If you are here it means you have encountered the weird loading Intellisense status check issue in Visual Studio Code caused by Intellisense Loading indefinitely. You cannot find method definitions by Ctrl + Clicking...
So now you have already identified how to find unused references in the code using VSC, you want to be able to delete them, right? Of course, you can delete them one by one....
If you want to learn How to show unused references in Visual Studio Code let me tell you it is more like an inbuilt Visual Studio code feature. Turning this setting on will basically...
Playwright uses Jest Library for its testing assertions. So the next time you are using expect from @playwright/test, just know that you have been using the expect library from Jest. There are tons of...
We are going to learn How to Save Cookies and Reuse Authentication State in Playwright in this tutorial. Playwright makes storing your auth state easy and then reusing it in other tests. Thus avoiding...