Monday 16 February 2015

GUI Testing

GUI Testing : GUI testing is nothing but testing the application's user interface elements like textboxes,checkboxes etc to see whether they are working according to the requirements or not.the main intention behind this type of testing is to see how application responds to user input.

Below I'm listing down few User Interface Elements and you need to test cases for them and then test to see whether they are working as expected or not.

1) Checkboxes
2) Textboxes.
3) Buttons
4) Radio buttons
5) List Boxes.

What to Test with UI elements..? : Well below I'm listing down few conditions to be test for different UI elements.

* Checkboxes : check whether one checkbox is allowed to check or more than one checkbox allowed to check.
* Checkboxes : check the spelling of the title associated with the checkboxes.
* Checkboxes : check the font size of the title associated with the checkboxes.
* Checkboxes : if there are more than one checkbox then see whether checkboxes are of same size or not.
* Textboxes : check textboxes for various validations like whether they accept numbers,special characters,alphabets,more than 256 characters etc or not.
* Textboxes : check the spelling of the title associated with the textboxes.
* Textboxes : check the font size of the title associated with the textboxes .
* Textboxes : if there are more than one textbox then see whether textboxes are of same size or not.
* Buttons : check the response of application when buttons are clicked by user
* Radio Buttons : check the response of application when radio buttons are clicked by user.
* Radio Buttons : check if application is allowing to select more than one radio button at once or not.
* List Boxes : check if application is allowing user to select more than one value at once or not.
* List Boxes : check the spelling of all values in list boxes.
* List Boxes : check the font size of all values in list boxes.

I hope GUI testing is clearing now..:)


No comments:

Post a Comment