Skip to main content

Customer Expects SIT in full swing!

Software Testing - Overview

Hi Friends,

Welcome to a quick look up site, where you can know what is "T" "E" "S" "T" "I" "N" "G"! This site gives you the Overview as well the in-depth details of Software Testing, Approaches, Practices and additional tools which are required in Software testing practice.

You could have imagined why this guy is speaking like a Professor. You as a reader knows right now a days people want's them to showcase and make things complicated. But I can assure reading this blog site you will enjoy learning in the same time not feel like in living in a 4th Dimensional world (The Interstellar way ;-) ).

Fun's apart! So lets start the story of Software Testing!

Before I start I wan't to personally thank my English teacher for making me type a decent English and my Testing Guru Mr. Aravinth Kumar for giving me the complete knowledge of Software testing.

To start with the story, we need to know about about enemies in the war field, War field I refer here as the Software. We as testing engineers should be ready to face the weapon created by the developers and should have the ability to break it running to a intensive test.

The image below represents the same.




In the end the overall Goal should be to improve the quality of the product and to have a successful delivery to the customer!!

So come on!

Start Tutorials!

Comments

Post a Comment

Popular posts from this blog

TestNG Tutorial

Introduction  TestNG is basically a Unit testing framework basically for Selenium webdriver Software automation for Test engineers. It is basically inspired or developed from JUnit (Tut's coming soon on JUnit) with additional functionalities or features. We use TestNG basically to annotate in the sense to make our code easily understandable to anyone. Its splits up the code in the form on Annotations like @Before , @After to showcase our code written in Selenium. Our section of TestNG here covers the below 1) Installation Guide 2) Execute a TestNG Webdriver Test 3) Testng Annotations with example To know more about TestNG features click on the link TestNG - Features or visit TestNG.org

Selenium - Basic Commands

Creating New Instance WebDriver driver = new FirefoxDriver() The above command is used to open a new instance of Firefox driver Command To Open URL In Browser driver.get("http://only-testing-blog.blogspot.com/2013/11/new-test.html"); This syntax will open specified URL of software web application in web browser. Clicking on any element or button of webpage driver.findElement(By.id("submitButton")).click(); Above given syntax will click on targeted element in webdriver. Store text of targeted element in variable String dropdown = driver.findElement(By.tagName("select")).getText(); This syntax will retrieve text from targeted element of software web application page and will store it in variable = dropdown. Typing text in text box or text area. driver.findElement(By.name("fname")).sendKeys("My First Name"); Above syntax will type specified text in targeted element. VIEW PRACTICAL EXAMPLE OF SendKeys Appl...