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

Hi Frds., i am Nithi here.here in my company i am working in manual testing ie. application testing only front end not back end like i will enter datas and check whether the record gets updated r not. what kind of testig is this? and some people r working on scripting languages same manual testing what is the difference between these two testing? ans please thanks in advance

3 Answers  


Condition testing is a control structure testing technique where the criteria used to design test cases is that they Option 1 Rely on basis path testing Option 2 Exercise the logical conditions in a program module Option 3 Select test paths based on the locations and uses of variables Option 4 Focus on testing the validity of loop constructs

1 Answers  


what is BRD and FRD Can any one tell the expansion?

9 Answers   Cisco,


Hi everyone, My name is Salil Mishra. I am having 1.7 years of experience in manual testing. But as i m 2008 passout, there are limited position for me in the companies. Please help me out in getting a good job guys..I f you find something then please mail me at salilmishra29@gmail.com

0 Answers  


what is black phase in SDLC

4 Answers  






1.Test cases for Password cannot be used for next 13 times? 2.Test cases for Password should not be less than 8 to 13 chars and there should be at least one special character and one Capital letter.

1 Answers   Satyam,


what do u mean by Functional testing?

9 Answers   Zycus Infotech,


what is be bugging ?

8 Answers   Accenture,


Can u plz write/tell me 2 main Negative Test Cases for my Mobile Phone.

7 Answers   Xavient,


1. what is SDLC and TDLC ?

8 Answers  


How will you determine when to stop testing?

0 Answers  


what is security test,what is meant by authentication &autherization

2 Answers   kenexa,


Categories