October 26, 2021

Fix "OneTimeSetUp: System.ArgumentNullException : Value cannot be null. (Parameter 'value')" when using Specflow - Selenium

Fix "OneTimeSetUp: System.ArgumentNullException : Value cannot be null. (Parameter 'value')" when using Specflow - Selenium

When the method didn't receive enough arguments while execution, we may get System.ArgumentNullException : Value cannot be null If we ar...

September 21, 2021

How to fix  Access to the path 'C:\Users\..\bin\Debug\chromedriver.exe' is denied. issue while using selenium

How to fix Access to the path 'C:\Users\..\bin\Debug\chromedriver.exe' is denied. issue while using selenium

There will be situations where we will not be able to delete the chromedriver or access it. One such recurring scenario is when we try to up...

April 12, 2021

How to fix 'user data directory is already in use' exception in selenium

How to fix 'user data directory is already in use' exception in selenium

 If we have an SSO application and we want to login to the application with those credentials, we can use a small modification to our driver...

March 18, 2021

How to create a selenium custom select method for a multiselect dropdown in Angular application

How to create a selenium custom select method for a multiselect dropdown in Angular application

If our application is of type angular, the normal selenium SelectElement class may not work. Especially if the select dropdown allows multi-...

March 15, 2021

How to handle OpenQA.Selenium.ElementClickInterceptedException: element click intercepted

How to handle OpenQA.Selenium.ElementClickInterceptedException: element click intercepted

 This exception will be thrown by selenium mostly while loading a page. If our application is an angular application chance of this exceptio...

March 11, 2021

How to programmatically get all processes from task manager using C#

How to programmatically get all processes from task manager using C#

We may come across different scenarios where we need to get the list of all applications/processes running in the background of the Window O...

March 6, 2021

How to Combine, Order and Run test methods programmatically as ordered tests using visual studio ( Coded UI + .Net )

How to Combine, Order and Run test methods programmatically as ordered tests using visual studio ( Coded UI + .Net )

 Since the ordered tests in visual studio are depreciated, we now need to find another way to combine different test methods and run them in...
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...