Author: <span>Aditya</span>

Learning NUnit In Easy Way For Beginners

NUnit is a test framework for all Microsoft .Net language. NUnit is derived from JUnit, a unit test framework for Java. It is written in C# and helps you to execute unit tests for code written in .net. At the time of writing this article, the most recent version of NUnit was 2.6.2. NUnit supports many features but in this article, I explain only those features which are actually required by black box testers. I intend to write another article on advanced NUnit where I will cover the features in depth. GETTING STARTED: Let’s write a simple banking program. [sourcecode language=”csharp”] namespace …

Google Chrome and ChromeDriver with Selenium

Google Chrome and ChromeDriver with Selenium Before going in details about google chrome and ChromeDriver lets learn some terminology. Wire Protocol: defined as RESTful web services using JSON over HTTP that is being used by webdriver/RemoteWebDriver, to communicate with browser. ChromeDriver is a standalone server developed by Chromium team(Google) which implements wire protocol. ChromeDriver consist of three separate pieces, a. Chrome Browser. b. Selenium Project code (driver) AND c.  An Executable that helps code to communicate with chrome browser (lets call it server for ease) server expects you to have chrome installed in the default location of computer. Before start, …

Working with Firefox Profile

Firefox Profile: Firefox profile is a special folder where you actually save all your settings and configurations like bookmarks, your homepage, your extensions which you installed on your Firefox. Your profile folder is kept in a separate folder so in case if anything goes wrong with your FFox you will not lose your data. To check the folder in your computer, type “about:support” in your address bar without double quote or Click on Troubleshooting Information in Help Menu. Firefox will load all information related to the profile. You will find a button in Application Basic table which will take you …