September 14, 2022

How to scroll until the web element is in the center of screen using Selenium + .Net + Java Script

How to scroll until the web element is in the center of screen using Selenium + .Net + Java Script

 When we are using any type of reporting , if given the command to take a screenshot it takes the currently visible screen of the applicatio...

September 12, 2022

How to customize report name instead of Index.html/ Dashboard.html when using latest versions of extent report

How to customize report name instead of Index.html/ Dashboard.html when using latest versions of extent report

 If anyone is using the new version of Extent report may have seen that now we are getting two HTML files instead of one Dashboard.html Inde...
How to Change git repo URL without impacting the uncommitted /unsynched code

How to Change git repo URL without impacting the uncommitted /unsynched code

 What happens if the repo URL that we are using is suddenly changed and a new URL is provided. If there are no uncommitted codes, we can sim...
Fix "The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program." error while using PyCharm

Fix "The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program." error while using PyCharm

If git is not confiugured correctly, we may get the following error in PyCharm while trying to execute any git command. git : The term '...

September 5, 2022

Thread.Sleep equivalent in Java Script (Node JS)

Thread.Sleep equivalent in Java Script (Node JS)

As we know, in Node JS the code is executed asynchronously. Asynchronous functions are functions that do not block the execution of the prog...

August 2, 2022

Fix 'Element should have been select but was mat-select' error while Angular application automation using selenium

Fix 'Element should have been select but was mat-select' error while Angular application automation using selenium

 The controls of angular applications are a bit different, so it may cause some issues if we try to automate the application using selenium....

July 28, 2022

Fix 'The unit test adapter failed to connect to the data source or to read the data' in Visual Studio

Fix 'The unit test adapter failed to connect to the data source or to read the data' in Visual Studio

 If we are trying to data drive a test method, we may come across the below error in the visual studio.   Message:  The unit test adapter fa...
Bookmark this website for more workarounds and issue fixes.

Verify Zip file contents without extracting using C# + Selenium

While doing automation testing, we may get a scenario where we need to download a zip file and to validate the contents inside it. One way t...