Web control point test summary

1. Interface check When
  entering a page test, first check the title, page layout, fields, etc., instead of entering the text box immediately to check
  1. Whether the page name title is correct
  2. Whether the current position is visible Your position: xxx>xxxx
  3. Uniformity of text format
  4. Whether the layout is neat
  5. Whether the display fields of the list items are complete, and whether the field names of the list items are the same as those of the form.
  6. On the same page, whether there are problems with the same field names and different values.
  7. Data loading situation: In addition to the value of the text box, also pay attention to:
  check box, whether to save the check box, or save the
  drop-down box, whether to save the selected value
  Multi- text box, whether the value is saved, space, Whether the newline is saved or not
  
2. Single text box (type=text)
  boundary: field
  length Empty: whether it can be empty
  Unique: whether it is unique (small summary: boundary, empty, unique, special characters, correctness)
  Consider the language, Operating environment
  Special symbols test input:
  ' or 1<>'1 ' or '1'='1 ' or '1'<>'2 "|?><</div>
  where a='xxx' Whether underscore allows input All spaces enter single quotes
  >


  Enter the amount text box, the first integer of the integer is 0, filter out, after the decimal point, generally keep two valid digits.
  Correctness test: (essential step)
  1), (when the maximum allowable length of the field is entered) the test of the allowable length of the data:
  a. The test of whether the page is squeezed out (all input long English strings, whether to break the line);
  b. Whether the database allows the maximum characters (all Chinese characters, all English, mixed...);
  c. The correct process of the shortest length and the correct process of the largest length are covered.
  2) For the fields that are allowed to be empty, do not fill in, and after the data is transmitted again, see if a 500 error is reported.
  3) The length of the field (or the value of the value) is not specified, and the input is not rigid. When inputting a very large number of characters (or a very large value), check the correctness of the allowed action to
             see if an error is reported. (The result to be achieved: Regardless of whether there is a length limit (there is no longest and maximum limit for you to test?), the final page cannot throw a database exception.) monkey test
       description: By continuously entering long strings, see if there is a length check In

  the end, one of the following two situations will occur:
  A. The page (foreground) has the length and size of the checksum; or
  B, there is no checksum, and the database reports an error.
  Therefore: All fields must be limited in length and size (regardless of whether the requirements are specified or not, regardless of the granularity of the test, the length must be limited, and it is not allowed to report database errors, all must be tested!!!). The maximum length limit can be limited: 1. No more input is allowed; 2. Automatic truncation processing and prompting the user

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326351966&siteId=291194637