Selenium C#

How to run Chrome/Firefox/MSEdge in headless mode and private mode using Selenium (Csharp/Java/Python)

In 2023, Selenium is still a popular automation testing tool. It does support many running mode to adapt to your requirements. Headless Mode is a feature that allows the browser to run without a graphical user interface (GUI), making it faster and more efficient for running automated tests. It is recommend when running testcases in …

How to run Chrome/Firefox/MSEdge in headless mode and private mode using Selenium (Csharp/Java/Python) Read More »

Data Driven Testing with Nunit using JSON

Data driven testing is supported by Nunit by using [TestCase] and [TestCaseSource] attribute (https://docs.nunit.org/articles/nunit/writing-tests/attributes/testcasesource.html). It requires you to define another class to contain test data. In real world, there will be many situations you will need to use JSON file as your data. In real world, there will be many situations you will need to …

Data Driven Testing with Nunit using JSON Read More »