Skip to main content

Posts

Showing posts from February, 2016

How to compare the Text on Web Page

In this Article i am explaining you how you can match the Text available in the  Web page. This is useful because it may be possible suppose that you test the "Sign In" text should be present in the Login page and in later build that text may be change so you case write the Test Case to compare that text at any time and provide you the Test Case Pass or fail.

Automated Testing

In Automated Testing, The test user use a software which is different with the software which need to be tested to execute the Test Cases and check the output of the software and match that output with the expected output to verify the result. Automation Testing is used for the Functional Testing, Performance Testing, Regression Testing, Security testing and Network Testing. Automation Testing can be performed by some automated tools. These tools speed up the testing work compared to the Manual Testing.

How to login into Yahoo Mail by using Selenium Web Driver

In this example i am explaining you how to login into Yahoo Mail with your credential by using Selenium Web Driver. here you will learn also how to locate the Text box , Button in any web page. here you will learn to login with hard coded just for explaining you to locate web element. In later articles i will explaining you how you can take data from another file and how you can take data from the excel file to login into Yahoo Mail so that no one can see your login credential to make it secure.

How to find out the Title of any web page using selenium Web Driver

Suppose you want to find out the title of the  https://www.google.co.in/ Here is the code to get the title of any webpage

Structural Testing

Structural Testing is the type of testing in which user should have the knowledge of the code because in this testing user need to check the structure of the system. Structural Testing is White Box Testing.

Age Testing

Age Testing is the type of testing in which we check that how the software will perform in future, How the software performance going down as per the time passes, How the software dependencies will fall. This all comes under Age Testing.

XPath Expression to locate Web Element

In last article i mentioned you how to locate the Web Element with id, Name, LinkText, Partial LinkText, CSS Selectors, Class Name and Tag Name. We use FireBug add-one to use these 7 locators to locate the Web Element on Web Page. Now we are talking about XPath expression. Which is also a type of Locator. We need FirePath add-ons to use it.

Accessibility Testing

Accessibility Testing is the testing which is verify that the person who have the disabilities is able to use the software or not. Disabilities may be difficulties with sight, hearing, movement , talking or mental disabilities etc.

End-To-End Testing

End to end Testing define that the flow of the software should be work as per the describe in the software requirement. End to end testing verifies that the for any input the right out put should be generated and that output used as a input to other system component to verifies the interaction between the component of the software.

How to use Locators to locate Web Element

Everything that is showing on Web Page is the Web Element. Web Element is the Text Box, Button, Text Are, Radio Button, Checkbox, Link, Images, Browser Button, Text, iFrame, pop up window, pop up screen, Confirmation Box, Alert Box all are Web Element. So here i am explaining how to locate Web element by using Locators

Locators for Selenium Web Driver

As we already discussed that Selenium Web Driver work only with the Web Application. In every Web Application there are several Web Pages. In each Web pages there are several Web Element.

Ad-Hoc Testing

Ad-Hoc Testing is the testing type which is performed without any proper procedure and without any Requirement Specification. Ad-Hoc testing is totally informal testing which have intension to break the application as early as possible and found important defect early.  In Ad-hoc testing tester do not have any test cases so only the users who have very high knowledge regarding the application only they can perform Ad-Hoc Testing.