Example string for validating input fields

Does anyone have the line they are inserted into when testing html forms?

It's just basically something that will test their system, handle all sorts of crap data that might be transferred.

+2


source to share


2 answers


In test cases for validation input fields:



  • No data
  • Very big data
  • Integer data
  • Integer data with leading or trailing spaces
  • Alpha numeric data
  • Special character
  • Unicode characters
  • Html or xml data
  • Checking the SQL installation
+4


source


First of all, if its a required field only validates empty data and data only with spaces.

Try pasting <xml>

into textbox and then submitting.

You should check this datatype.



More about

Scripts for multiple sites

0


source







All Articles