Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 1.37 KB

File metadata and controls

52 lines (29 loc) · 1.37 KB

Selenium Calculator Testing 📑

💭 Overview

This repository contains a Selenium testing script written in C# using NUnit.Framework for testing the functionality of a calculator web application.
The script covers basic arithmetic operations such as addition, subtraction, multiplication, and division to ensure the calculator performs accurately and displays the correct results.

✅ Prerequisites

Before running the tests, make sure that the necessary NuGet packages are installed.
Follow the steps below to install the required packages using the NuGet Package Manager Console or your preferred NuGet package manager.

Install Microsoft.NET.Test.Sdk

   Install-Package Microsoft.NET.Test.Sdk -Version <version>

Install NUnit

   Install-Package NUnit -Version <version>

Install NUnit3TestAdapter

   Install-Package NUnit3TestAdapter -Version <version>

Install Selenium.Support

   Install-Package Selenium.Support -Version <version>

Install Selenium.WebDriver.ChromeDriver

   Install-Package Selenium.WebDriver.ChromeDriver -Version <version>

👉 Replace with the desired version.
You can check the latest version on the NuGet website.