Skip to main content

GUI Testing Checklist - 2

  1. Text boxes
    1. Move mouse to textbox and it should be changed to insert bar for editable text field and should remain unchanged for non-editable text field.
    2. Test overflowing textbox by inserting as many characters as you can in the text field. Also test width of the text field by entering all capital W.
    3. Enter invalid characters, special characters and make sure that there is no abnormality.
    4. User should be able to select text using Shift + arrow keys. Selection should be possible using mouse and double click should select entire text in the text box.

  2. Radio Buttons
    1. Only one should be selected from the given option.
    2. User should be able to select any button using mouse or key board
    3. Arrow key should set/unset the radio buttons.

  3. Check boxes
    1. User should be able to select any combination of checkboxes
    2. Clicking mouse on the box should set/unset the checkbox.
    3. Spacebar should also do the same

  4. Push Buttons
    1. All buttons except OK/Cancel should have a letter access to them. This is indicated by a letter underlined in the button text. The button should be activated by pressing ALT
    2. Clicking each button with mouse should activate it and trigger required action.
    3. Similarly, after giving focus SPACE or RETURN button should also do the same.
    4. If there is any Cancel button on the screen, pressing Esc should activate it.

  5. Drop down list boxes
    1. Pressing the arrow should give list of options available to the user. List can be scrollable but user should not be able to type in.
    2. Pressing Ctrl-F4 should open the list box.
    3. Pressing a letter should bring the first item in the list starting with the same letter.
    4. Items should be in alphabetical order in any list.
    5. Selected item should be displayed on the list.
    6. There should be only one blank space in the dropdown list.

  6. Combo Box
    1. Similar to the list mentioned above, but user should be able to enter text in it.

  7. List Boxes
    1. Should allow single select, either by mouse or arrow keys.
    2. Pressing any letter should take you to the first element starting with that letter
    3. If there are view/open button, double clicking on icon should be mapped to these behavior.
    4. Make sure that all the data can be seen using scroll bar.

Comments

Popular posts from this blog

SQL SERVER Questions And Answers

SQL SERVER Questions And Answers 1. What is an Entity? The basic data item stored in database is called entity. An entity can be any object, item, place, person, concept, or activity about which data is stored. 2. What is an attribute? An attribute is a property of an entity. It describes a part of an entity. Entity could have one or more attributes. 3. What is ER diagram? An Entity Relationship Diagram is diagrammatic representation of the logical structure of a database system. 4. Describe the concept of keys. Candidate key An attribute that uniquely identifies a row is called candidate key. It is also called das surrogate key. Primary key A candidate key that you choose to identify rows uniquely is called a primary key. Alternate key If there are multiple candidate keys in a table, the candidate keys that are chosen as primary key are called the alternate keys. Composite key When the key that uniquely identifies the rows of a table is made up of more than one attribute, it is ca...

Testing Measurement

Someone has rightly said that if something can not be measured, it can not be managed or improved. There is huge value in measurement, but you should always make sure that you get some value out of any measurement that you are doing. You should be able to answer the following questions: What is the purpose of this measurement program? What data items you are collecting and how you are reporting it? What is the correlation between the data and conclusion? Value addition: Any measurement program can be divided into two parts. The first part is to collect data, and the second is to prepare metrics/chart and analyses them to get the valuable insight which might help in decision making. Information collected during any measurement program can help in: Finding the relation between data points, Correlating cause and effect, Input of future planning. Normally, any metric program involves certain steps which are repeated over a period of time. It starts with identifying what to measure. After t...

What’s New with QTP 9.5?

This is the general overview giving the brief description of what is new in QTP9.5 New Features: 1.  New design time panes: Various new IDE panes have been introduced which does not provide any new functionality to add up but basically the operations which were in the deep sub menus are now put up in front. Available Keyword Pane: This pane shows all the available functions in the current test (either in-action or externally added), as well as all the objects in your object repository (local and external). The items are effectively separated into groups, making it easier to search for a relevant item. Double clicking any item in the pane will open it, and dragging the item to the main window will add it to the script in the drop position. Double clicking a function will not only open the hosting file in the main window, but also focus on the exact position of the function within the file. Test Flow Pane: This pane lays out the action call structure of the current test. It outlines...