How will you test Email field?

Answers were Sorted based on User's Feedback



How will you test Email field?..

Answer / rajendra

E-mail address validation

Address = "A@b.c"; -- Valid
Address = "A@b.cnet"; -- Invalid
Address = "A@b.c_"; -- Invalid
Address = "A@bcnn"; -- Invalid
Address = "Ab.cnn"; -- Invalid
Address = "A@bc"; -- Invalid
Address = "A@bat@.cnn"; -- Invalid
Address = "A@bat/.com"; -- Invalid

Must not be too short and too long.
Only one @ in email address
Only one period ’.’or two periods.
No more than 3 characters after the final period (reverse
find is 0 based not 1 based)com/ org/net/mil/gov
Should not have an underscrode after @
Allowed characters 0-9 A-Z _. @-

Byeee Friends
Rajendra
rajendra_penumalli@yahoo.com

Is This Answer Correct ?    22 Yes 7 No

How will you test Email field?..

Answer / vishal bilgaiyan

There are many validation for E-mail here i am defining some
of them.
Email format: vishal.bilgaiyan @ gmail.com
|______________||_||___| |___|
(1) (2) (3) (4)
I have devided Email ID in 4 parts..
In first part we have to check invalid condition input
spaces, Left blank, use special character, symbols etc.

In Second part we have to check invalid condition input
other specail character [!#$%^&*()_-:;"'?/|\) at the place
of @. left thisfield as blank. input spaces.etc.

In third part we have to check invalid invalid domain.

In fourth part we have to check only valid
suffix(.com,.co.in,.edu,.info,.org,.in etc)

every time EmailID should be in well manner.
like vishal.bilgaiyan@gmail.com

Let me know if you have any problem regarding this issue.

Thanks to all of u...
bye

Is This Answer Correct ?    14 Yes 3 No

How will you test Email field?..

Answer / naveen kumaran.a

public boolean isValidEmailID(String emailID)
{
boolean valid = false;
if (emailID)!= null)
{
Pattern p = Pattern.compile(".+@.+\\[a-z]+")
Matcher m = p.matcher(emailID);
valid = m.matches();
}
return valid;
}

Is This Answer Correct ?    4 Yes 1 No

How will you test Email field?..

Answer / gavaskar

i will go for penetration testing

Is This Answer Correct ?    4 Yes 11 No

How will you test Email field?..

Answer / ananya

check that the .com part is there or not.And also put some
numeric arbit values on the field & then check the
functionality.

Is This Answer Correct ?    5 Yes 14 No

Post New Answer

More Manual Testing Interview Questions

What was early release of Quality centre called?

2 Answers   ITC Infotech,


can any one give the definitions for the High Level Design and the Low Level Desigh in the Designing part of SDLC????

3 Answers  


What is mean by Schedule report who is the responsible for generated that one ?

1 Answers  


How do we decide scope for smoke and sanity testing?

2 Answers   BMC,


what is migration testing?

1 Answers   Cap Gemini, HCL,


i want manual and automation test cases and interview questions

1 Answers   Cambridge,


what is agile testing?

3 Answers  


As a tester, what is the final report u submitted to ur customer? please write it in tabular form?

1 Answers   CybAge,


If U have Test Cases already prepared and u have to just excute those test cases in a very short time then how will U decide which test cases has to be excuted first. Is there any technique ?

8 Answers   Impetus,


After testing the application May I have to keep a Test Log of the application ? If Yes then how? And What is the format for it?

1 Answers  


What is Negative testing?

5 Answers  


Can you send me a good site for testing?

0 Answers   Crea,


Categories