In this post we will discuss writing some simple code with Selenium C# in Visual Studio . In the last post we referenced our Selenium WebDriver via Nuget package manager in our project. Please read my previous post to get started with selenium referencing in Visual Studio. Same way we need to add our browser reference….
Introduction to Selenium Webdriver with C# in Visual Studio 2015
What is Selenium WebDriver ? WebDriver is a automating web application testing tool. This provide APIs that easily integrate with any programming language such as C#, java, python. For details please go through the url. The use of Selenium WebDriver is to basically test any web application. What is C# ? C# is a programming…
Top 10 Automated Testing Tools in 2017
Success in any test automation depends on identifying the right tool for the project. With a plethora of open-source and commercial automation tools to choose from, automation Testing tool selection can become tricky. Here is a curated list of top automation tools – 1) Selenium : Selenium is an open-source web automation tool and currently…
Screenshot In Selenium Using C#
Its very important to take screenshot when we execute a test script. When we execute huge number of test scripts, and if some test fails, we need to check why the test has failed. It helps us to debug and identify the problem by seeing the screen shot. In selenium WebDriver, we can take the…
Reading Data From Excel
Some companies prefer to read all the input values from the excel file. This method had it’s own advantages as well as disadvantages. Today I thought of sharing a code to read data from Excel.
Selenium Overview
is an open-source and a portable automated software testing tool for testing web applications. It has capabilities to operate across different browsers and operating systems. Selenium is not just a single tool but a set of tools that helps testers to automate web-based applications more efficiently. Let us now understand each one of…
Manual Testing Tips Part – 3
Why is defect management process important in software development teams? In a perfect world, with perfect people, software development would be a very simple process. We would go through each stage of the development cycle once, and we would be done. As a matter of fact, we would not need to test at all, or…
Manual Testing Tips Part – 2
What is the testing process followed in a company ideally? Whenever a company got new project for testing usually there is a meeting in which they decide about client, testing process, duration, delivery date and who all will be involved in a team. From SRS (Software Requirement specification) project plan is developed and accordingly developer…
Manual Testing Tips Part – 1
What is the difference between use case and test case? Ø Use case o Use case describes step by step instructions of how to use functionality and They are prepared by business analyst. o Use cases are derived from Business requirement specifications. o Use cases are pictorial representations of client requirements and represents flow of…