Statement: is the reference to a lot of other people's articles and some of their own experience to do a summary, because the time is long, also did not leave the reference link at the time, if the reference to other people's content, please leave a message to explain, thank you
- Add, modify
- Special keys
-
- Whether the TAB key is supported
- Whether to support enter key
- Prompt information
-
- Do not meet the requirements of the place if there is an error message
- Uniqueness
-
- field is unique, can be added again, whether it can be modified to an existing field (the field includes case sensitivity and input space before and after the input, after saving, the data is really inserted into the database, note the correctness of the data after saving)
- Data correctness:
-
- Make changes to each edit item on the edit page, click Save to save it, and check to see if the associated data is being updated.
- Check the required fields (that is, whether to give hints and prompts, whether the data is still stored in the database;
- Whether it can be added continuously (for special cases)
- When editing, note the length limit of the edit item, sometimes at the time of adding it, but not at the time of editing (note the consistency of adding and modifying rules)
- For the image upload function of the edit box, if you do not upload pictures, see the editing page when the default picture is displayed, if you upload pictures, see if it appears as uploading pictures
- After modifying the data, pay special attention to whether the data of the query page is updated in time, especially when the homepage is updated.
- When submitting data, click repeatedly to see if the system will add several identical data or error.
- If there is no record in the results list or if a record is not selected, click the Edit button and the system will throw an exception.
- Delete
- Special keys
-
- Whether the TAB key is supported
- Whether to support enter key
- Prompt information
-
- Do not select any information, directly click the Delete button, whether there is a hint
- There should be a confirmation prompt when deleting a piece of information
- Data implementation
-
- Whether multiple products can be deleted continuously
- Whether the success can be deleted when there is only one piece of data
- Whether you can add the same data after deleting one piece of data
- If the system supports bulk deletion, note that the deleted information is correct
- If you have a full selection, notice whether to delete all the data
- When deleting data, pay attention to whether the data of the corresponding query page is updated in time
- If the deleted data is associated with other business data, be aware of its relevance (such as deleting departmental information, departmental downstream staff, should be prompted)
- If there is no record in the results list or no record is selected, clicking the Delete button will result in an error.
for the module containing the addition and deletion of the function, but also need to perform some combination of operations testing, common combinations include the following:
- Increase-and-increase (continuous increase test)
- Add-on Delete
- Add-on-delete (new additions consistent with deletions)
- Added----delete
- Modify-and-modify (continuous modification test)
- Modified-Add (the new additions are consistent with the content before the change)
- Modified--Delete
- Modified--Delete--Add (new additions consistent with deletions)
- Delete--delete (continuous delete test)
Web test point Collation (iv)--Add/Modify/delete features